Symbol: o1
crypto/krb5/src/lib/gssapi/generic/gssapiP_generic.h
54
#define g_OID_equal(o1, o2) \
crypto/krb5/src/lib/gssapi/generic/gssapiP_generic.h
55
(((o1)->length == (o2)->length) && \
crypto/krb5/src/lib/gssapi/generic/gssapiP_generic.h
56
(memcmp((o1)->elements, (o2)->elements, (o1)->length) == 0))
crypto/krb5/src/lib/gssapi/krb5/gssapi_krb5.c
315
#define g_OID_prefix_equal(o1, o2) \
crypto/krb5/src/lib/gssapi/krb5/gssapi_krb5.c
316
(((o1)->length >= (o2)->length) && \
crypto/krb5/src/lib/gssapi/krb5/gssapi_krb5.c
317
(memcmp((o1)->elements, (o2)->elements, (o2)->length) == 0))
crypto/krb5/src/lib/gssapi/mechglue/g_accept_sec_context.c
300
#define g_OID_prefix_equal(o1, o2) \
crypto/krb5/src/lib/gssapi/mechglue/g_accept_sec_context.c
301
(((o1)->length >= (o2)->length) && \
crypto/krb5/src/lib/gssapi/mechglue/g_accept_sec_context.c
302
(memcmp((o1)->elements, (o2)->elements, (o2)->length) == 0))
crypto/krb5/src/lib/gssapi/mechglue/mglueP.h
17
#define g_OID_copy(o1, o2) \
crypto/krb5/src/lib/gssapi/mechglue/mglueP.h
19
memcpy((o1)->elements, (o2)->elements, (o2)->length); \
crypto/krb5/src/lib/gssapi/mechglue/mglueP.h
20
(o1)->length = (o2)->length; \
crypto/krb5/src/lib/rpc/svc_auth_gss.c
55
#define g_OID_equal(o1,o2) \
crypto/krb5/src/lib/rpc/svc_auth_gss.c
56
(((o1)->length == (o2)->length) && \
crypto/krb5/src/lib/rpc/svc_auth_gss.c
57
((o1)->elements != 0) && ((o2)->elements != 0) && \
crypto/krb5/src/lib/rpc/svc_auth_gss.c
58
(memcmp((o1)->elements,(o2)->elements,(int) (o1)->length) == 0))
crypto/openssh/libcrux_internal.h
21646
o1 =
crypto/openssh/libcrux_internal.h
21650
vec->data[j] = o1;
crypto/openssh/libcrux_internal.h
21787
int16_t o1 = libcrux_ml_kem_vector_portable_arithmetic_montgomery_reduce_element(ai_bj_aj_bi);
crypto/openssh/libcrux_internal.h
21789
out->data[(size_t)2U * i + (size_t)1U] = o1;
crypto/openssh/regress/unittests/test_helper/fuzz.c
110
fuzz->o1, fuzz->slen * 8, fuzz->o1);
crypto/openssh/regress/unittests/test_helper/fuzz.c
115
(((fuzz_ullong)fuzz->o2) * fuzz->slen * 8) + fuzz->o1,
crypto/openssh/regress/unittests/test_helper/fuzz.c
117
fuzz->o1, fuzz->o2);
crypto/openssh/regress/unittests/test_helper/fuzz.c
122
fuzz->o1, fuzz->slen, fuzz->o1);
crypto/openssh/regress/unittests/test_helper/fuzz.c
127
(((fuzz_ullong)fuzz->o2) * fuzz->slen) + fuzz->o1,
crypto/openssh/regress/unittests/test_helper/fuzz.c
129
fuzz->o1, fuzz->o2);
crypto/openssh/regress/unittests/test_helper/fuzz.c
134
fuzz->o1, fuzz->slen, fuzz->o1);
crypto/openssh/regress/unittests/test_helper/fuzz.c
139
fuzz->o1, fuzz->slen, fuzz->o1);
crypto/openssh/regress/unittests/test_helper/fuzz.c
145
(fuzz->o1 * (fuzz_ullong)64) + fuzz->o2,
crypto/openssh/regress/unittests/test_helper/fuzz.c
146
fuzz->slen * (fuzz_ullong)64, fuzz->o1,
crypto/openssh/regress/unittests/test_helper/fuzz.c
261
fuzz, fuzz_ntop(fuzz->strategy), fuzz->o1, fuzz->o2, fuzz->slen));
crypto/openssh/regress/unittests/test_helper/fuzz.c
265
return fuzz->o1 >= fuzz->slen * 8;
crypto/openssh/regress/unittests/test_helper/fuzz.c
274
return fuzz->o1 >= fuzz->slen;
crypto/openssh/regress/unittests/test_helper/fuzz.c
287
(u_long)fuzz->strategies, fuzz->o1, fuzz->o2, fuzz->slen));
crypto/openssh/regress/unittests/test_helper/fuzz.c
309
fuzz->o1 = fuzz->o2 = 0;
crypto/openssh/regress/unittests/test_helper/fuzz.c
316
assert(fuzz->o1 / 8 < fuzz->slen);
crypto/openssh/regress/unittests/test_helper/fuzz.c
318
fuzz->fuzzed[fuzz->o1 / 8] ^= 1 << (fuzz->o1 % 8);
crypto/openssh/regress/unittests/test_helper/fuzz.c
319
fuzz->o1++;
crypto/openssh/regress/unittests/test_helper/fuzz.c
322
assert(fuzz->o1 / 8 < fuzz->slen);
crypto/openssh/regress/unittests/test_helper/fuzz.c
325
fuzz->fuzzed[fuzz->o1 / 8] ^= 1 << (fuzz->o1 % 8);
crypto/openssh/regress/unittests/test_helper/fuzz.c
327
fuzz->o1++;
crypto/openssh/regress/unittests/test_helper/fuzz.c
328
if (fuzz->o1 >= fuzz->slen * 8) {
crypto/openssh/regress/unittests/test_helper/fuzz.c
329
fuzz->o1 = 0;
crypto/openssh/regress/unittests/test_helper/fuzz.c
334
assert(fuzz->o1 < fuzz->slen);
crypto/openssh/regress/unittests/test_helper/fuzz.c
336
fuzz->fuzzed[fuzz->o1] ^= 0xff;
crypto/openssh/regress/unittests/test_helper/fuzz.c
337
fuzz->o1++;
crypto/openssh/regress/unittests/test_helper/fuzz.c
340
assert(fuzz->o1 < fuzz->slen);
crypto/openssh/regress/unittests/test_helper/fuzz.c
343
fuzz->fuzzed[fuzz->o1] ^= 0xff;
crypto/openssh/regress/unittests/test_helper/fuzz.c
345
fuzz->o1++;
crypto/openssh/regress/unittests/test_helper/fuzz.c
346
if (fuzz->o1 >= fuzz->slen) {
crypto/openssh/regress/unittests/test_helper/fuzz.c
347
fuzz->o1 = 0;
crypto/openssh/regress/unittests/test_helper/fuzz.c
353
assert(fuzz->o1 < fuzz->slen);
crypto/openssh/regress/unittests/test_helper/fuzz.c
355
fuzz->o1++;
crypto/openssh/regress/unittests/test_helper/fuzz.c
358
assert(fuzz->o1 < fuzz->slen);
crypto/openssh/regress/unittests/test_helper/fuzz.c
361
fuzz->fuzzed[fuzz->o1] = fuzz_b64chars[fuzz->o2];
crypto/openssh/regress/unittests/test_helper/fuzz.c
365
fuzz->o1++;
crypto/openssh/regress/unittests/test_helper/fuzz.c
374
(u_long)fuzz->strategies, fuzz->o1, fuzz->o2, fuzz->slen));
crypto/openssh/regress/unittests/test_helper/fuzz.c
407
assert(fuzz->o1 <= fuzz->slen);
crypto/openssh/regress/unittests/test_helper/fuzz.c
408
return fuzz->slen - fuzz->o1;
crypto/openssh/regress/unittests/test_helper/fuzz.c
426
assert(fuzz->o1 <= fuzz->slen);
crypto/openssh/regress/unittests/test_helper/fuzz.c
427
return fuzz->fuzzed + fuzz->o1;
crypto/openssh/regress/unittests/test_helper/fuzz.c
429
assert(fuzz->o1 <= fuzz->slen);
crypto/openssh/regress/unittests/test_helper/fuzz.c
72
size_t o1, o2;
crypto/openssl/test/gmdifftest.c
24
struct tm tm1, tm2, o1;
crypto/openssl/test/gmdifftest.c
34
o1 = tm1;
crypto/openssl/test/gmdifftest.c
42
|| !TEST_true(OPENSSL_gmtime_diff(&off_day, &off_sec, &o1, &tm1)))
lib/libc/net/ether_addr.c
89
unsigned int o0, o1, o2, o3, o4, o5;
lib/libc/net/ether_addr.c
91
i = sscanf(a, "%x:%x:%x:%x:%x:%x", &o0, &o1, &o2, &o3, &o4, &o5);
lib/libc/net/ether_addr.c
95
e->octet[1]=o1;
lib/libc/net/eui64.c
146
unsigned int o0, o1, o2, o3, o4, o5, o6, o7;
lib/libc/net/eui64.c
150
&o0, &o1, &o2, &o3, &o4, &o5, &o6, &o7);
lib/libc/net/eui64.c
155
&o0, &o1, &o2, &o3, &o4, &o5, &o6, &o7);
lib/libc/net/eui64.c
160
&o0, &o1, &o2, &o3, &o4, &o5, &o6, &o7);
lib/libc/net/eui64.c
165
&o0, &o1, &o2, &o5, &o6, &o7);
lib/libc/net/eui64.c
173
&o0, &o1, &o2, &o5, &o6, &o7);
lib/libc/net/eui64.c
184
e->octet[1]=o1;
sys/amd64/amd64/db_disasm.c
1724
case o1:
sys/amd64/amd64/db_disasm.c
917
/*d0*/ { "", true, BYTE, op2(o1, E), db_Grp2 },
sys/amd64/amd64/db_disasm.c
918
/*d1*/ { "", true, LONG, op2(o1, E), db_Grp2 },
sys/arm/include/bus.h
265
#define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \
sys/arm/include/bus.h
266
(*(t)->__bs_opname(c,sz))((t), h1, o1, h2, o2, cnt)
sys/arm/include/bus.h
463
#define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
sys/arm/include/bus.h
464
__bs_copy(1, t, h1, o1, h2, o2, c)
sys/arm/include/bus.h
465
#define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
sys/arm/include/bus.h
466
__bs_copy(2, t, h1, o1, h2, o2, c)
sys/arm/include/bus.h
467
#define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
sys/arm/include/bus.h
468
__bs_copy(4, t, h1, o1, h2, o2, c)
sys/arm/include/bus.h
469
#define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
sys/arm/include/bus.h
470
__bs_copy(8, t, h1, o1, h2, o2, c)
sys/arm64/include/bus.h
302
#define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \
sys/arm64/include/bus.h
303
(*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt)
sys/arm64/include/bus.h
497
#define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
sys/arm64/include/bus.h
498
__bs_copy(1, t, h1, o1, h2, o2, c)
sys/arm64/include/bus.h
499
#define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
sys/arm64/include/bus.h
500
__bs_copy(2, t, h1, o1, h2, o2, c)
sys/arm64/include/bus.h
501
#define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
sys/arm64/include/bus.h
502
__bs_copy(4, t, h1, o1, h2, o2, c)
sys/arm64/include/bus.h
503
#define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
sys/arm64/include/bus.h
504
__bs_copy(8, t, h1, o1, h2, o2, c)
sys/dev/sound/pcm/feeder_eq.c
109
intpcm_t o1[SND_CHN_MAX];
sys/dev/sound/pcm/feeder_eq.c
163
w -= (intpcm64_t)info->treble.o1[i] * treble->a1;
sys/dev/sound/pcm/feeder_eq.c
167
info->treble.o2[i] = info->treble.o1[i];
sys/dev/sound/pcm/feeder_eq.c
171
info->treble.o1[i] = v;
sys/dev/sound/pcm/feeder_eq.c
176
w -= (intpcm64_t)info->bass.o1[i] * bass->a1;
sys/dev/sound/pcm/feeder_eq.c
180
info->bass.o2[i] = info->bass.o1[i];
sys/dev/sound/pcm/feeder_eq.c
184
info->bass.o1[i] = v;
sys/dev/sound/pcm/feeder_eq.c
237
info->treble.o1[i] = 0;
sys/dev/sound/pcm/feeder_eq.c
241
info->bass.o1[i] = 0;
sys/dev/usb/wlan/if_urtw.c
3012
uint16_t o1, o2, o3, tmp;
sys/dev/usb/wlan/if_urtw.c
3017
urtw_read16_m(sc, URTW_RF_PINS_OUTPUT, &o1);
sys/dev/usb/wlan/if_urtw.c
3022
o1 &= ~URTW_RF_PINS_MAGIC4;
sys/dev/usb/wlan/if_urtw.c
3023
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, o1 | URTW_BB_HOST_BANG_EN);
sys/dev/usb/wlan/if_urtw.c
3025
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, o1);
sys/dev/usb/wlan/if_urtw.c
3031
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1);
sys/dev/usb/wlan/if_urtw.c
3033
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1 |
sys/dev/usb/wlan/if_urtw.c
3036
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1 |
sys/dev/usb/wlan/if_urtw.c
3043
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1 |
sys/dev/usb/wlan/if_urtw.c
3046
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1 |
sys/dev/usb/wlan/if_urtw.c
3049
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1);
sys/dev/usb/wlan/if_urtw.c
3052
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1 | URTW_BB_HOST_BANG_RW |
sys/dev/usb/wlan/if_urtw.c
3055
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, bit | o1 | URTW_BB_HOST_BANG_RW);
sys/dev/usb/wlan/if_urtw.c
3057
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, o1 | URTW_BB_HOST_BANG_RW);
sys/dev/usb/wlan/if_urtw.c
3063
o1 | URTW_BB_HOST_BANG_RW);
sys/dev/usb/wlan/if_urtw.c
3066
o1 | URTW_BB_HOST_BANG_RW | URTW_BB_HOST_BANG_CLK);
sys/dev/usb/wlan/if_urtw.c
3069
o1 | URTW_BB_HOST_BANG_RW | URTW_BB_HOST_BANG_CLK);
sys/dev/usb/wlan/if_urtw.c
3072
o1 | URTW_BB_HOST_BANG_RW | URTW_BB_HOST_BANG_CLK);
sys/dev/usb/wlan/if_urtw.c
3078
o1 | URTW_BB_HOST_BANG_RW);
sys/dev/usb/wlan/if_urtw.c
3082
urtw_write16_m(sc, URTW_RF_PINS_OUTPUT, o1 | URTW_BB_HOST_BANG_EN |
sys/i386/i386/db_disasm.c
1483
case o1:
sys/i386/i386/db_disasm.c
812
/*d0*/ { "", true, BYTE, op2(o1, E), db_Grp2 },
sys/i386/i386/db_disasm.c
813
/*d1*/ { "", true, LONG, op2(o1, E), db_Grp2 },
sys/powerpc/include/bus.h
272
#define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \
sys/powerpc/include/bus.h
273
(*(t)->__bs_opname(c,sz))(h1, o1, h2, o2, cnt)
sys/powerpc/include/bus.h
445
#define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
sys/powerpc/include/bus.h
446
__bs_copy(1, t, h1, o1, h2, o2, c)
sys/powerpc/include/bus.h
447
#define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
sys/powerpc/include/bus.h
448
__bs_copy(2, t, h1, o1, h2, o2, c)
sys/powerpc/include/bus.h
449
#define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
sys/powerpc/include/bus.h
450
__bs_copy(4, t, h1, o1, h2, o2, c)
sys/powerpc/include/bus.h
451
#define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
sys/powerpc/include/bus.h
452
__bs_copy(8, t, h1, o1, h2, o2, c)
sys/powerpc/include/bus.h
455
#define bus_space_copy_region_stream_2(t, h1, o1, h2, o2, c) \
sys/powerpc/include/bus.h
456
__bs_copy(s_2, t, h1, o1, h2, o2, c)
sys/powerpc/include/bus.h
457
#define bus_space_copy_region_stream_4(t, h1, o1, h2, o2, c) \
sys/powerpc/include/bus.h
458
__bs_copy(s_4, t, h1, o1, h2, o2, c)
sys/powerpc/include/bus.h
459
#define bus_space_copy_region_stream_8(t, h1, o1, h2, o2, c) \
sys/powerpc/include/bus.h
460
__bs_copy(s_8, t, h1, o1, h2, o2, c)
sys/riscv/include/bus.h
270
#define __bs_copy(sz, t, h1, o1, h2, o2, cnt) \
sys/riscv/include/bus.h
271
(*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt)
sys/riscv/include/bus.h
443
#define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
sys/riscv/include/bus.h
444
__bs_copy(1, t, h1, o1, h2, o2, c)
sys/riscv/include/bus.h
445
#define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
sys/riscv/include/bus.h
446
__bs_copy(2, t, h1, o1, h2, o2, c)
sys/riscv/include/bus.h
447
#define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
sys/riscv/include/bus.h
448
__bs_copy(4, t, h1, o1, h2, o2, c)
sys/riscv/include/bus.h
449
#define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
sys/riscv/include/bus.h
450
__bs_copy(8, t, h1, o1, h2, o2, c)
sys/x86/include/bus.h
1041
#define bus_space_copy_region_stream_1(t, h1, o1, h2, o2, c) \
sys/x86/include/bus.h
1042
bus_space_copy_region_1((t), (h1), (o1), (h2), (o2), (c))
sys/x86/include/bus.h
1043
#define bus_space_copy_region_stream_2(t, h1, o1, h2, o2, c) \
sys/x86/include/bus.h
1044
bus_space_copy_region_2((t), (h1), (o1), (h2), (o2), (c))
sys/x86/include/bus.h
1045
#define bus_space_copy_region_stream_4(t, h1, o1, h2, o2, c) \
sys/x86/include/bus.h
1046
bus_space_copy_region_4((t), (h1), (o1), (h2), (o2), (c))
tools/tools/netmap/pkt-gen.c
105
unsigned int o0, o1, o2, o3, o4, o5;
tools/tools/netmap/pkt-gen.c
107
i = sscanf(a, "%x:%x:%x:%x:%x:%x", &o0, &o1, &o2, &o3, &o4, &o5);
tools/tools/netmap/pkt-gen.c
113
o.octet[1]=o1;