| /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/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 | 1004 ConstantInt *IDX = dyn_cast<ConstantInt>(GEP.getOperand(idxOperand)); in computePolynomialFromPointer() local 1005 if (!IDX) in computePolynomialFromPointer() 1007 Indices.push_back(IDX); in computePolynomialFromPointer()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | GCNSchedStrategy.cpp | 880 for (unsigned IDX = 0; IDX < DAG.Pressure.size(); ++IDX) in finalizeGCNSchedStage() local 881 DAG.RegionsWithMinOcc[IDX] = in finalizeGCNSchedStage() 882 DAG.Pressure[IDX].getOccupancy(DAG.ST) == DAG.MinOccupancy; in finalizeGCNSchedStage()
|
| /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 | 12873 llvm::FoldingSetNodeID IDX, IDY; in hasSameExpr() local 12874 X->Profile(IDX, *this, /*Canonical=*/true); in hasSameExpr() 12876 return IDX == IDY; in hasSameExpr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 18953 SDValue IDX = DAG.getExternalSymbol("_tls_index", PtrVT); in LowerGlobalTLSAddress() local 18955 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, PtrVT, Chain, IDX, in LowerGlobalTLSAddress() 18958 IDX = DAG.getLoad(PtrVT, dl, Chain, IDX, MachinePointerInfo()); in LowerGlobalTLSAddress() 18963 IDX = DAG.getNode(ISD::SHL, dl, PtrVT, IDX, Scale); in LowerGlobalTLSAddress() 18965 res = DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, IDX); in LowerGlobalTLSAddress()
|