Searched refs:index2 (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/sys/crypto/rc4/
H A Drc4.h46 u_char index2; member in struct:rc4_state
H A Drc4.c70 state->index2 = 0;
98 state->index2 += state->perm[state->index1];
102 &state->perm[state->index2]);
105 j = state->perm[state->index1] + state->perm[state->index2];
/freebsd-13-stable/usr.bin/ktrdump/
H A Dktrdump.c105 int index, index2; local
231 kvm_read(kd, nl[2].n_value, &index2, sizeof(index2)) == -1)
270 * after index2) and walk forward. Otherwise, start with the
275 i = index2 + 1 % entries;
353 * 'index' and 'index2' are the values of 'ktr_idx'
356 * 'index2' were in flux while the KTR buffer was
365 if (i == index2)
381 while (index == index2) {
383 if (kvm_read(kd, nl[2].n_value, &index2,
[all...]
/freebsd-13-stable/usr.sbin/keyserv/
H A Dcrypt_server.c89 unsigned char index2; local
99 index2 = 0;
102 index2 = (key_data_ptr[index1] + state[counter] +
103 index2) % 256;
104 swap_byte(&state[counter], &state[index2]);
/freebsd-13-stable/sys/kern/
H A Dsubr_pctrie.c266 pctrie_keydiff(uint64_t index1, uint64_t index2) argument
270 KASSERT(index1 != index2, ("%s: passing the same key value %jx",
273 index1 ^= index2;
/freebsd-13-stable/sys/vm/
H A Dvm_radix.c292 vm_radix_keydiff(vm_pindex_t index1, vm_pindex_t index2) argument
296 KASSERT(index1 != index2, ("%s: passing the same key value %jx",
299 index1 ^= index2;
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.cpp2437 unsigned index2; local
2438 for (index2 = threadIdIndex; index2 < index; index2++) {
2439 totals[index2]++;
2440 if (counts[index2] > maxCt[index2]) {
2441 maxCt[index2] = counts[index2];
2443 counts[index2]
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dlapi.c283 LUA_API int lua_rawequal (lua_State *L, int index1, int index2) { argument
285 StkId o2 = index2addr(L, index2);
313 LUA_API int lua_compare (lua_State *L, int index1, int index2, int op) { argument
318 o2 = index2addr(L, index2);
/freebsd-13-stable/contrib/lua/src/
H A Dlapi.c304 LUA_API int lua_rawequal (lua_State *L, int index1, int index2) { argument
306 const TValue *o2 = index2value(L, index2);
327 LUA_API int lua_compare (lua_State *L, int index1, int index2, int op) { argument
333 o2 = index2value(L, index2);
/freebsd-13-stable/sys/netgraph/
H A Dng_ppp.c2409 const int index2 = *((const int *) v2); local
2411 return ((int *)latency)[index1] - ((int *)latency)[index2];

Completed in 106 milliseconds