Searched refs:idx1 (Results 1 - 25 of 38) sorted by relevance

12

/netbsd-current/sys/arch/aarch64/aarch64/
H A Dpmapboot.c217 int level, idx0, idx1, idx2, idx3, nskip = 0; local
294 idx1 = l1pde_index(va);
307 llidx = idx1;
310 if (l1pde_valid(l1[idx1]) && l1[idx1] != pte) {
315 l1[idx1] = pte;
317 idx0, idx1, pte);
322 if (!l1pde_valid(l1[idx1])) {
331 l1[idx1] = pte;
333 ttbr, idx0, idx1, pt
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dsparseset.c49 Assumes idx1 < s->members and idx2 < s->members. */
52 sparseset_swap (sparseset s, SPARSESET_ELT_TYPE idx1, SPARSESET_ELT_TYPE idx2) argument
55 sparseset_insert_bit (s, s->dense[idx1], idx2);
56 sparseset_insert_bit (s, tmp, idx1);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dsparseset.cc49 Assumes idx1 < s->members and idx2 < s->members. */
52 sparseset_swap (sparseset s, SPARSESET_ELT_TYPE idx1, SPARSESET_ELT_TYPE idx2) argument
55 sparseset_insert_bit (s, s->dense[idx1], idx2);
56 sparseset_insert_bit (s, tmp, idx1);
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DTable.cc306 cmpValues (long idx1, long idx2) argument
308 int32_t i1 = data->fetch (idx1);
415 cmpValues (long idx1, long idx2) argument
417 uint32_t u1 = data->fetch (idx1);
524 cmpValues (long idx1, long idx2) argument
526 int64_t i1 = data->fetch (idx1);
633 cmpValues (long idx1, long idx2) argument
635 uint64_t u1 = data->fetch (idx1);
960 cmpValues (long idx1, long idx2) argument
962 double d1 = data->fetch (idx1);
1246 long idx1 = *(long*) p1; // index1 into Data local
[all...]
H A DTable.h396 virtual int cmpValues (long idx1, long idx2) = 0;
H A DHist_data.cc97 uint64_t idx1, idx2; local
98 idx1 = ((FileData *) (hi_1->obj))->get_index ();
100 if (idx1 < idx2)
102 else if (idx1 > idx2)
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h154 void check(uptr idx1, uptr idx2) const { argument
155 CHECK_LT(idx1, size());
H A Dsanitizer_bitvector.h147 uptr i1 = idx1(idx);
162 uptr i1 = idx1(idx);
176 uptr i1 = idx1(idx);
333 uptr idx1(uptr idx) const { function
H A Dsanitizer_deadlock_detector.h356 // idx1 and idx2 are raw indices to g_, not lock IDs.
357 bool testOnlyHasEdgeRaw(uptr idx1, uptr idx2) { argument
358 return g_.hasEdge(idx1, idx2);
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_bvgraph.h152 void check(uptr idx1, uptr idx2) const { argument
153 CHECK_LT(idx1, size());
H A Dsanitizer_bitvector.h145 uptr i1 = idx1(idx);
160 uptr i1 = idx1(idx);
174 uptr i1 = idx1(idx);
331 uptr idx1(uptr idx) const { function
H A Dsanitizer_deadlock_detector.h354 // idx1 and idx2 are raw indices to g_, not lock IDs.
355 bool testOnlyHasEdgeRaw(uptr idx1, uptr idx2) { argument
356 return g_.hasEdge(idx1, idx2);
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_bvgraph.h153 void check(uptr idx1, uptr idx2) const { argument
154 CHECK_LT(idx1, size());
H A Dsanitizer_bitvector.h146 uptr i1 = idx1(idx);
161 uptr i1 = idx1(idx);
175 uptr i1 = idx1(idx);
332 uptr idx1(uptr idx) const { function
H A Dsanitizer_deadlock_detector.h350 // idx1 and idx2 are raw indices to g_, not lock IDs.
351 bool testOnlyHasEdgeRaw(uptr idx1, uptr idx2) { argument
352 return g_.hasEdge(idx1, idx2);
/netbsd-current/external/mit/lua/dist/src/
H A Dluaconf.h383 #define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ)
384 #define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT)
H A Dlua.h256 LUA_API int (lua_rawequal) (lua_State *L, int idx1, int idx2);
257 LUA_API int (lua_compare) (lua_State *L, int idx1, int idx2, int op);
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dfunctional.d1045 immutable idx1 = hash % maxSize;
1046 if (!bt(initialized.ptr, idx1))
1048 emplace(&memo[idx1], args, fun(args));
1049 bts(initialized.ptr, idx1); // only set to initialized after setting args and value (bugzilla 14025)
1050 return memo[idx1].res;
1052 else if (memo[idx1].args == args)
1053 return memo[idx1].res;
1058 emplace(&memo[idx2], memo[idx1]);
1063 else if (idx1 != idx2)
1064 memo[idx2] = memo[idx1];
[all...]
/netbsd-current/sys/dev/pcmcia/
H A Dpcmciavar.h249 #define pcmcia_tuple_read_1(tuple, idx1) \
250 (pcmcia_cis_read_1((tuple), ((tuple)->ptr+(2+(idx1)))))
/netbsd-current/external/apache2/llvm/dist/llvm/utils/
H A Dshuffle_select_fuzz_tester.py292 [idx0, idx1] = sorted(random.sample(range(len(inputs)), 2))
294 op1 = inputs[idx1]
323 del inputs[idx1]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-mdb/
H A Dmonitor.c664 const monitor_idx_t *idx1 = (const monitor_idx_t *)p1; local
667 return SLAP_PTRCMP( idx1->idx_ad, idx2->idx_ad );
673 monitor_idx_t *idx1 = (monitor_idx_t *)p1; local
676 return SLAP_PTRCMP( idx1->idx_ad, idx2->idx_ad ) == 0 ? -1 : 0;
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/
H A Dfunctional.d1380 immutable idx1 = hash % maxSize;
1381 if (!bt(initialized.ptr, idx1))
1383 emplace(&memo[idx1], args, fun(args));
1386 bts(initialized.ptr, idx1);
1387 return memo[idx1].res;
1389 else if (memo[idx1].args == args)
1390 return memo[idx1].res;
1395 emplace(&memo[idx2], memo[idx1]);
1400 else if (idx1 != idx2)
1401 memo[idx2] = memo[idx1];
[all...]
/netbsd-current/external/bsd/pcc/dist/pcc/arch/arm/
H A Dlocal2.c656 int idx0 = 0, idx1 = 1; local
660 idx1 = 0;
668 printf("[%s," CONFMT "]\n", rnames[r->n_rval], r->n_lval+idx1);
676 printf("[%s," CONFMT "]\n", rnames[l->n_rval], l->n_lval+idx1);
682 printf("[%s," CONFMT "]\n", rnames[l->n_rval], l->n_lval+idx1);
689 printf("[%s," CONFMT "]\n", rnames[p->n_rval], p->n_lval+idx1);
/netbsd-current/external/gpl3/binutils/dist/gprofng/libcollector/
H A Dunwind.c666 int idx1 = (int) ((idx >> 44) % UIDTableSize); local
667 if (UIDTable[idx1] == uid)
678 UIDTable[idx1] = uid;
705 int idx1 = (int) ((idxt >> 44) % UIDTableSize); local
706 if (UIDTable[idx1] == uidt)
714 UIDTable[idx1] = uidt;
774 int idx1 = (int) ((idx >> 44) % UIDTableSize); local
775 if (UIDTable[idx1] == uid)
787 UIDTable[idx1] = uid;
822 int idx1 local
1817 uint64_t idx1 = wctx_pc_save->pc * ROOT_IDX; local
[all...]
/netbsd-current/sys/dev/ic/
H A Dvga.c1435 u_int idx1, idx2; local
1439 idx1 = ' '; /* space */
1441 res1 = _vga_mapchar(id, scr->fontset1, uni, &idx1);
1451 *index = idx1;

Completed in 210 milliseconds

12