/freebsd/sys/contrib/openzfs/include/sys/lua/ |
H A D | luaconf.h | 295 #define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ) argument 296 #define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT) argument
|
H A D | lua.h | 197 LUA_API int (lua_rawequal) (lua_State *L, int idx1, int idx2); 198 LUA_API int (lua_compare) (lua_State *L, int idx1, int idx2, int op);
|
/freebsd/lib/liblua/ |
H A D | luaconf.h | 373 #define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ) argument 374 #define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT) argument
|
/freebsd/stand/liblua/ |
H A D | luaconf.h | 366 #define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ) argument 367 #define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT) argument
|
/freebsd/contrib/lua/src/ |
H A D | luaconf.h | 376 #define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ) argument 377 #define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT) argument
|
H A D | lua.h | 237 LUA_API int (lua_rawequal) (lua_State *L, int idx1, int idx2); 238 LUA_API int (lua_compare) (lua_State *L, int idx1, int idx2, int op);
|
H A D | luaconf.h.dist | 371 #define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ) 372 #define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT)
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_bitvector.h | 146 uptr i1 = idx1(idx); in setBit() 161 uptr i1 = idx1(idx); in clearBit() 175 uptr i1 = idx1(idx); in getBit() 332 uptr idx1(uptr idx) const { in idx1() function
|
H A D | sanitizer_bvgraph.h | 153 void check(uptr idx1, uptr idx2) const { in check() argument 154 CHECK_LT(idx1, size()); in check()
|
H A D | sanitizer_deadlock_detector.h | 351 bool testOnlyHasEdgeRaw(uptr idx1, uptr idx2) { in testOnlyHasEdgeRaw() argument 352 return g_.hasEdge(idx1, idx2); in testOnlyHasEdgeRaw()
|
/freebsd/contrib/ldns/ |
H A D | util.c | 442 size_t idx0, idx1, idx2, idx3, idx4; in ldns_bubblebabble() local 446 idx1 = (((size_t)(data[2 * i])) >> 2) & 15; in ldns_bubblebabble() 450 retval[j++] = consonants[idx1]; in ldns_bubblebabble() 464 idx1 = 16; in ldns_bubblebabble() 467 retval[j++] = consonants[idx1]; in ldns_bubblebabble()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | SymbolTable.cpp | 36 int &idx1 = symMap[CachedHashStringRef(sym->getName())]; in wrap() local 40 idx2 = idx1; in wrap() 41 idx1 = idx3; in wrap()
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | util.c | 549 { unsigned idx1; in UTIL_mergeFileNamesTable() local 550 …for( idx1=0 ; (idx1 < table1->tableSize) && table1->fileNames[idx1] && (pos < newTotalTableSize); … in UTIL_mergeFileNamesTable() 551 size_t const curLen = strlen(table1->fileNames[idx1]); in UTIL_mergeFileNamesTable() 552 memcpy(buf+pos, table1->fileNames[idx1], curLen); in UTIL_mergeFileNamesTable()
|
/freebsd/sys/dev/pccard/ |
H A D | pccardvar.h | 126 #define pccard_tuple_read_1(tuple, idx1) \ argument 127 (pccard_cis_read_1((tuple), ((tuple)->ptr+(2+(idx1)))))
|
/freebsd/sys/x86/iommu/ |
H A D | amd_idpgtbl.c | 134 vm_pindex_t idx, idx1; in amdiommu_pgtbl_map_pte() local 162 flags, &idx1, &sfp); in amdiommu_pgtbl_map_pte()
|
H A D | intel_idpgtbl.c | 332 vm_pindex_t idx, idx1; in dmar_pgtbl_map_pte() local 370 flags, &idx1, &sfp); in dmar_pgtbl_map_pte()
|
/freebsd/sys/cam/scsi/ |
H A D | scsi_xpt.c | 1821 u_int idx1, idx2, nlun_old, nlun_new; in probe_purge_old() local 1840 for (idx1 = 0; idx1 < nlun_old; idx1++) { in probe_purge_old() 1841 ol = old->luns[idx1].lundata; in probe_purge_old() 1858 CAM_GET_LUN(old, idx1, this_lun); in probe_purge_old() 1870 if (!CAM_CAN_GET_SIMPLE_LUN(old, idx1)) in probe_purge_old() 1872 CAM_GET_SIMPLE_LUN(old, idx1, this_lun); in probe_purge_old()
|
/freebsd/include/ |
H A D | unistd.h | 527 int kcmp(pid_t pid1, pid_t pid2, int type, uintptr_t idx1, uintptr_t idx2);
|
/freebsd/crypto/openssh/ |
H A D | sshkey.c | 1085 u_int idx0, idx1, idx2, idx3, idx4; in fingerprint_bubblebabble() local 1089 idx1 = (((u_int)(dgst_raw[2 * i])) >> 2) & 15; in fingerprint_bubblebabble() 1093 retval[j++] = consonants[idx1]; in fingerprint_bubblebabble() 1107 idx1 = 16; in fingerprint_bubblebabble() 1110 retval[j++] = consonants[idx1]; in fingerprint_bubblebabble()
|
/freebsd/sys/kern/ |
H A D | sys_generic.c | 2132 uintptr_t idx1, uintptr_t idx2) in kern_kcmp() argument 2149 error = fget_remote(td, p1, idx1, &fp1); in kern_kcmp() 2193 uap->idx1, uap->idx2)); in sys_kcmp()
|
/freebsd/sys/sys/ |
H A D | syscallsubr.h | 204 uintptr_t idx1, uintptr_t idx2);
|
/freebsd/lib/libsys/ |
H A D | _libsys.h | 865 int __sys_kcmp(pid_t pid1, pid_t pid2, int type, uintptr_t idx1, uintptr_t idx2);
|
/freebsd/sys/arm64/linux/ |
H A D | linux_systrace_args.c | 2051 iarg[a++] = p->idx1; /* l_ulong */ in systrace_args()
|
/freebsd/sys/amd64/linux/ |
H A D | linux_systrace_args.c | 2423 iarg[a++] = p->idx1; /* l_ulong */ in systrace_args()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/ |
H A D | Combine.td | 1381 (G_EXTRACT_VECTOR_ELT $root, $src, $idx1),
|