| /freebsd/sbin/hastd/ |
| H A D | lzf.c | 53 # define IDX(h) ((( h >> (3*8 - HLOG)) - h ) & (HSIZE - 1)) macro 55 # define IDX(h) ((( h >> (3*8 - HLOG)) - h*5) & (HSIZE - 1)) macro 57 # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1)) macro 61 * IDX works because it is very similar to a multiplicative hash, e.g. 73 # define IDX(h) ((h) & (HSIZE - 1)) 150 hslot = htab + IDX (hval); in lzf_compress() 243 htab[IDX (hval)] = ip; in lzf_compress() 248 htab[IDX (hval)] = ip; in lzf_compress() 257 htab[IDX (hval)] = ip; in lzf_compress()
|
| /freebsd/contrib/llvm-project/libc/src/__support/CPP/utility/ |
| H A D | in_place.h | 30 template <size_t IDX> struct in_place_index_t { 33 template <size_t IDX> 34 LIBC_INLINE_VAR constexpr in_place_index_t<IDX> in_place_index{};
|
| /freebsd/sys/libkern/ |
| H A D | strcspn.c | 34 #define IDX(c) ((u_char)(c) / LONG_BIT) macro 60 idx = IDX(*charset); in strcspn() 66 idx = IDX(*s1); in strcspn()
|
| H A D | strspn.c | 34 #define IDX(c) ((u_char)(c) / LONG_BIT) macro 59 idx = IDX(*charset); in strspn() 65 idx = IDX(*s1); in strspn()
|
| /freebsd/lib/libc/string/ |
| H A D | strcspn.c | 33 #define IDX(c) ((u_char)(c) / LONG_BIT) macro 59 idx = IDX(*charset); in strcspn() 65 idx = IDX(*s1); in strcspn()
|
| H A D | strspn.c | 33 #define IDX(c) ((u_char)(c) / LONG_BIT) macro 58 idx = IDX(*charset); in strspn() 64 idx = IDX(*s1); in strspn()
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | microfocus | 20 >136 string \x02\x02\x04\x04 Micro Focus Index File (IDX)
|
| H A D | database | 559 # Summary: DBASE Compound Index file *.CDX and FoxPro index *.IDX 589 # only 1 example like: TEST.IDX 600 # length of key like: mostly 000Ah 0028h (TEST.IDX) 618 # for IDX variant 619 #>14 ubyte ^0x40 IDX
|
| /freebsd/crypto/openssl/crypto/aria/ |
| H A D | aria.c | 42 #define PUT_U32_BE(DEST, IDX, VAL) \ argument 44 ((uint8_t *)(DEST))[IDX * 4] = GET_U8_BE(VAL, 0); \ 45 ((uint8_t *)(DEST))[IDX * 4 + 1] = GET_U8_BE(VAL, 1); \ 46 ((uint8_t *)(DEST))[IDX * 4 + 2] = GET_U8_BE(VAL, 2); \ 47 ((uint8_t *)(DEST))[IDX * 4 + 3] = GET_U8_BE(VAL, 3); \
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | InterleavedLoadCombinePass.cpp | 1003 ConstantInt *IDX = dyn_cast<ConstantInt>(GEP.getOperand(idxOperand)); in computePolynomialFromPointer() local 1004 if (!IDX) in computePolynomialFromPointer() 1006 Indices.push_back(IDX); in computePolynomialFromPointer()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | GCNSchedStrategy.cpp | 1140 for (unsigned IDX = 0; IDX < DAG.Pressure.size(); ++IDX) in finalizeGCNSchedStage() local 1141 DAG.RegionsWithMinOcc[IDX] = in finalizeGCNSchedStage() 1142 DAG.Pressure[IDX].getOccupancy( in finalizeGCNSchedStage()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SDPatternMatch.h | 575 template <typename LHS, typename RHS, typename IDX> 576 inline TernaryOpc_match<LHS, RHS, IDX> 577 m_InsertSubvector(const LHS &Base, const RHS &Sub, const IDX &Idx) { 578 return TernaryOpc_match<LHS, RHS, IDX>(ISD::INSERT_SUBVECTOR, Base, Sub, Idx);
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | OpenMPOpt.cpp | 210 #define KERNEL_ENVIRONMENT_IDX(MEMBER, IDX) \ argument 211 constexpr const unsigned MEMBER##Idx = IDX; 218 #define KERNEL_ENVIRONMENT_CONFIGURATION_IDX(MEMBER, IDX) \ argument 219 constexpr const unsigned MEMBER##Idx = IDX;
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 13531 llvm::FoldingSetNodeID IDX, IDY; in hasSameExpr() local 13532 X->Profile(IDX, *this, /*Canonical=*/true); in hasSameExpr() 13534 return IDX == IDY; in hasSameExpr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 19658 SDValue IDX = DAG.getExternalSymbol("_tls_index", PtrVT); in LowerGlobalTLSAddress() local 19660 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, PtrVT, Chain, IDX, in LowerGlobalTLSAddress() 19663 IDX = DAG.getLoad(PtrVT, dl, Chain, IDX, MachinePointerInfo()); in LowerGlobalTLSAddress() 19668 IDX = DAG.getNode(ISD::SHL, dl, PtrVT, IDX, Scale); in LowerGlobalTLSAddress() 19670 res = DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, IDX); in LowerGlobalTLSAddress()
|