/openbsd/lib/libkeynote/ |
H A D | signature.c | 635 unsigned char res2[20]; in keynote_sigverify_assertion() local 670 memset(res2, 0, hashlen); in keynote_sigverify_assertion() 676 SHA1_Final(res2, &shscontext); in keynote_sigverify_assertion() 681 memset(res2, 0, hashlen); in keynote_sigverify_assertion() 687 MD5_Final(res2, &md5context); in keynote_sigverify_assertion() 791 unsigned char res2[LARGEST_HASH_SIZE], *sbuf = NULL; in keynote_sign_assertion() local 841 memset(res2, 0, hashlen); in keynote_sign_assertion() 846 SHA1_Final(res2, &shscontext); in keynote_sign_assertion() 851 memset(res2, 0, hashlen); in keynote_sign_assertion() 856 MD5_Final(res2, &md5context); in keynote_sign_assertion() [all …]
|
/openbsd/usr.bin/make/ |
H A D | parsevar.c | 61 char *res1 = NULL, *res2 = NULL; in parse_variable_assignment() local 189 res2 = Var_Subst(arg, NULL, false); in parse_variable_assignment() 192 arg = res2; in parse_variable_assignment() 203 free(res2); in parse_variable_assignment()
|
/openbsd/gnu/usr.bin/perl/t/op/ |
H A D | taint.t | 267 my ($desc, $s, $res, $res2, $one); 305 ($res, $res2) = $s =~ /(.)/g; 312 is($res2,'b', "$desc: res2 value"); 381 ($res, $res2) = $s =~ /$TAINT(.)/g; 387 is($res2,'b', "$desc: res2 value"); 418 is($res2,'b', "$desc: res2 value"); 759 ($res, $res2) = $s =~ /(.)/g; 763 is_tainted($res2, "$desc: res2 tainted"); 766 is($res2,'b', "$desc: res2 value"); 835 ($res, $res2) = $s =~ /$TAINT(.)/g; [all …]
|
/openbsd/sys/dev/acpi/ |
H A D | acpiprt.c | 423 struct aml_value res, res2; in acpiprt_route_interrupt() local 469 if (aml_evalname(sc->sc_acpi, node, "_SRS", 1, &res, &res2)) { in acpiprt_route_interrupt() 475 aml_freevalue(&res2); in acpiprt_route_interrupt()
|
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_platform_limits_linux.cpp | 77 CHECK_SIZE_AND_OFFSET(io_event, res2);
|
H A D | sanitizer_platform_limits_freebsd.h | 89 u64 res2; member
|
H A D | sanitizer_platform_limits_posix.h | 176 u64 res2; member
|
/openbsd/sys/dev/ic/ |
H A D | cissreg.h | 176 u_int8_t res2[410]; member 256 u_int8_t res2[5]; member
|
H A D | vga.c | 1133 int res1, res2; in vga_mapchar() local 1139 res2 = -1; in vga_mapchar() 1142 res2 = _vga_mapchar(id, scr->fontset2, uni, &idx2); in vga_mapchar() 1144 if (res2 >= res1) { in vga_mapchar() 1146 return (res2); in vga_mapchar()
|
H A D | adwlib.h | 1061 u_int8_t res2 : 7; /* reserved */ member
|
H A D | advlib.h | 370 u_int8_t res2; member
|
/openbsd/sys/arch/hppa/dev/ |
H A D | elroyreg.h | 53 u_int64_t res2[12]; /* 0x0a0 */ member
|
/openbsd/gnu/gcc/gcc/config/ |
H A D | fp-bit.c | 879 UDItype res2 = 0; 883 res2 += (UDItype)1 << BITS_PER_SI; 887 res2++; 888 res2 += (ps_hh__ >> BITS_PER_SI) + pp_hh; 889 high = res2;
|
/openbsd/gnu/usr.bin/gcc/gcc/config/ |
H A D | fp-bit.c | 828 UDItype res2 = 0; 832 res2 += (UDItype)1 << BITS_PER_SI; 836 res2++; 837 res2 += (ps_hh__ >> BITS_PER_SI) + pp_hh; 838 high = res2;
|
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/ |
H A D | money_get_members_char.cc | 314 long double res2; in test03() local 315 iter_type end2 = mg.get(str.begin(), str.end(), false, iss, err, res2); in test03() 318 VERIFY( res2 == 1 ); in test03()
|
H A D | money_get_members_wchar_t.cc | 316 long double res2; in test03() local 317 iter_type end2 = mg.get(str.begin(), str.end(), false, iss, err, res2); in test03() 320 VERIFY( res2 == 1 ); in test03()
|
H A D | time_get_members_char.cc | 637 string res2; in test06() local
|
H A D | time_get_members_wchar_t.cc | 637 wstring res2; in test06() local
|
/openbsd/sys/dev/sbus/ |
H A D | cgtwelvereg.h | 165 u_int32_t res2; member
|
/openbsd/gnu/usr.bin/perl/Porting/ |
H A D | bench.pl | 1434 my $res2 = $res1->{$perl}; 1435 for my $field (keys %$res2) { 1436 my ($p, $q) = ($res2_norm->{$field}, $res2->{$field});
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | reorg.c | 274 resource_conflicts_p (res1, res2) in resource_conflicts_p() argument 275 struct resources *res1, *res2; in resource_conflicts_p() 277 if ((res1->cc && res2->cc) || (res1->memory && res2->memory) 278 || (res1->unch_memory && res2->unch_memory) 279 || res1->volatil || res2->volatil) 283 return (res1->regs & res2->regs) != HARD_CONST (0); 289 if ((res1->regs[i] & res2->regs[i]) != 0)
|
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/ |
H A D | sanitizer_common_test.cpp | 451 uptr res2 = address_range2.Init(init_size, nullptr, res); in TEST() local 452 CHECK_EQ(res, res2); in TEST()
|
/openbsd/gnu/gcc/gcc/ |
H A D | reorg.c | 267 resource_conflicts_p (struct resources *res1, struct resources *res2) in resource_conflicts_p() argument 269 if ((res1->cc && res2->cc) || (res1->memory && res2->memory) in resource_conflicts_p() 270 || (res1->unch_memory && res2->unch_memory) in resource_conflicts_p() 271 || res1->volatil || res2->volatil) in resource_conflicts_p() 275 return (res1->regs & res2->regs) != HARD_CONST (0); in resource_conflicts_p() 281 if ((res1->regs[i] & res2->regs[i]) != 0) in resource_conflicts_p()
|
/openbsd/sys/dev/pci/drm/i915/display/ |
H A D | intel_display_irq.c | 379 u32 res1, res2; in i9xx_pipe_crc_irq_handler() local 387 res2 = intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_RES2_G4X(pipe)); in i9xx_pipe_crc_irq_handler() 389 res2 = 0; in i9xx_pipe_crc_irq_handler() 395 res1, res2); in i9xx_pipe_crc_irq_handler()
|
/openbsd/lib/libform/ |
H A D | frm_driver.c | 1395 int res2 = E_OK; in _nc_Synchronize_Options() local 1408 res2 = Display_Field(field); in _nc_Synchronize_Options() 1425 res2 = Display_Field(field); in _nc_Synchronize_Options() 1429 if (res2 != E_OK) in _nc_Synchronize_Options() 1430 res = res2; in _nc_Synchronize_Options()
|