Home
last modified time | relevance | path

Searched refs:val0 (Results 1 – 25 of 26) sorted by relevance

12

/netbsd-src/sbin/routed/
H A Dparms.c438 char *val0, in parse_ts() argument
452 snprintf(buf, bufsize, "bad timestamp %.25s", val0); in parse_ts()
460 snprintf(buf, bufsize, "bad timestamp %.25s", val0); in parse_ts()
469 snprintf(buf, bufsize, "bad timestamp %.25s", val0); in parse_ts()
478 snprintf(buf, bufsize, "bad timestamp %.25s", val0); in parse_ts()
497 char *val0, *p, delim; in get_passwd() local
516 val0 = val; in get_passwd()
525 val0 = ++val; in get_passwd()
531 snprintf(buf, sizeof(buf), "bad KeyID \"%.20s\"", val0); in get_passwd()
537 "duplicate KeyID \"%.20s\"", val0); in get_passwd()
[all …]
/netbsd-src/lib/libintl/
H A Dplural_parser.c793 unsigned long val0, val1; in calculate_plural() local
800 val0 = calculate_plural(pe->u.parser_op.operands[0], n); in calculate_plural()
801 if (val0) in calculate_plural()
814 val0 = calculate_plural(pe->u.parser_op.operands[0], n); in calculate_plural()
818 return val0*val1; in calculate_plural()
820 return val0/val1; in calculate_plural()
822 return val0%val1; in calculate_plural()
824 return val0+val1; in calculate_plural()
826 return val0-val1; in calculate_plural()
828 return val0<val1; in calculate_plural()
[all …]
/netbsd-src/tests/lib/libc/string/
H A Dt_strcmp.c31 const char* val0; in ATF_TC_BODY() member
79 memcpy(&buf0[a0], tab[t].val0, in ATF_TC_BODY()
80 strlen(tab[t].val0) + 1); in ATF_TC_BODY()
/netbsd-src/external/gpl3/binutils/dist/zlib/
H A Dcrc32.c621 z_word_t val0, val1, val2; local
654 val0 = word[i];
657 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc) : "r"(val0));
675 val0 = word[i];
678 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc) : "r"(val0));
691 val0 = word[i];
692 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc) : "r"(val0));
/netbsd-src/external/gpl3/binutils.old/dist/zlib/
H A Dcrc32.c621 z_word_t val0, val1, val2; local
654 val0 = word[i];
657 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc) : "r"(val0));
675 val0 = word[i];
678 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc) : "r"(val0));
691 val0 = word[i];
692 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc) : "r"(val0));
/netbsd-src/external/gpl3/gdb/dist/zlib/
H A Dcrc32.c621 z_word_t val0, val1, val2; local
654 val0 = word[i];
657 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc) : "r"(val0));
675 val0 = word[i];
678 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc) : "r"(val0));
691 val0 = word[i];
692 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc) : "r"(val0));
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/riscv/
H A Dpredicates.md95 int val0 = ctz_hwi (INTVAL (op));
96 if ((val0 + val1 == BITS_PER_WORD)
97 && val0 > 31 && val0 < 64)
/netbsd-src/external/gpl3/gcc/dist/gcc/config/riscv/
H A Dpredicates.md100 int val0 = ctz_hwi (INTVAL (op));
101 if ((val0 + val1 == BITS_PER_WORD)
102 && val0 > 31 && val0 < 64)
/netbsd-src/crypto/dist/ipsec-tools/src/racoon/
H A Dcfparse.y257 #define ABORT_AND_VFREE(val0) {\ argument
258 vfree(val0); val0 = NULL;\
261 #define ABORT_AND_RACOON_FREE(val0) {\ argument
262 racoon_free(val0); val0 = NULL;\
265 #define ABORT_AND_VFREE2(val0, val1) {\ argument
266 vfree(val0); val0 = NULL;\
270 #define ABORT_AND_RACOON_FREE2(val0, val1) {\ argument
271 racoon_free(val0); val0 = NULL;\
/netbsd-src/sys/dev/ic/
H A Digpio.c531 uint32_t val0, newval0; in igpio_pin_ctl() local
540 val0 = bus_space_read_4(sc->sc_bst, sc->sc_bsh[ib->ib_barno], cfg0); in igpio_pin_ctl()
543 newval0 = val0; in igpio_pin_ctl()
588 val0, igpio_padcfg0_print(val0, 0), in igpio_pin_ctl()
H A Dwi.c2773 wi_cmd_start(struct wi_softc *sc, int cmd, int val0, int val1, int val2) in wi_cmd_start() argument
2807 CSR_WRITE_2(sc, WI_PARAM0, val0); in wi_cmd_start()
2816 wi_cmd(struct wi_softc *sc, int cmd, int val0, int val1, int val2) in wi_cmd() argument
2829 if ((rc = wi_cmd_start(sc, cmd, val0, val1, val2)) != 0) in wi_cmd()
2838 rc = wi_cmd_wait(sc, cmd, val0); in wi_cmd()
2859 wi_cmd_wait(struct wi_softc *sc, int cmd, int val0) in wi_cmd_wait() argument
2868 printf("%s: cmd=%#x, arg=%#x\n", __func__, cmd, val0); in wi_cmd_wait()
2900 cmd, val0); in wi_cmd_wait()
2909 cmd, val0); in wi_cmd_wait()
/netbsd-src/sys/external/bsd/drm2/dist/drm/mga/
H A Dmga_drv.h342 #define DMA_BLOCK(reg0, val0, reg1, val1, reg2, val2, reg3, val3) \ argument
348 DMA_WRITE(1, val0); \
/netbsd-src/sys/dev/pci/
H A Disp_pci.c810 uint16_t val0, val1; in isp_pci_rd_debounced() local
814 val0 = BXR2(pcs, IspVirt2Off(isp, off)); in isp_pci_rd_debounced()
816 } while (val0 != val1 && ++i < 1000); in isp_pci_rd_debounced()
817 if (val0 != val1) { in isp_pci_rd_debounced()
820 *rp = val0; in isp_pci_rd_debounced()
/netbsd-src/sys/external/bsd/drm/dist/shared-core/
H A Dmga_drv.h344 #define DMA_BLOCK( reg0, val0, reg1, val1, reg2, val2, reg3, val3 ) \ argument
350 DMA_WRITE( 1, val0 ); \
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
H A Damdgpu_ring.h274 uint32_t reg0, uint32_t val0,
/netbsd-src/external/gpl3/gdb/dist/sim/bfin/
H A DChangeLog-20211286 and add to casted low 16bits of A0.L and store in val0. Cast high
1288 store in val1. Delete bit checks of val0 and val1.
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/format/internal/
H A Dwrite.d1474 void[] val0;
1475 formatTest(val0, "[]");
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DCoroutines.rst651 %val0 = load i32, i32* %promise.addr
652 call void @print(i32 %val0)
H A DLangRef.rst6661 %val0 = load i32, i32* %arrayidx, !llvm.access.group !1
6663 store i32 %val0, i32* %arrayidx1, !llvm.access.group !1
6684 %val0 = load i32, i32* %arrayidx1, !llvm.access.group !3
6686 store i32 %val0, i32* %arrayidx2, !llvm.access.group !3
11122 <result> = phi [fast-math-flags] <ty> [ <val0>, <label0>], ...
18342 %val0 = load double, double* %ptr0, align 8
18347 %vec0 = insertelement <4 x double>undef, %val0, 0
18388 %val0 = extractelement <8 x i32> %value, i32 0
18397 store i32 %val0, i32* %ptr0, align 4
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dformat.d2736 void[] val0;
2737 formatTest( val0, "[]" );
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Darm.c13832 HOST_WIDE_INT val0 = 0, val1 = 0; in adjacent_mem_locations() local
13839 val0 = INTVAL (XEXP (XEXP (a, 0), 1)); in adjacent_mem_locations()
13855 if (!const_ok_for_op (val0, PLUS) || !const_ok_for_op (val1, PLUS)) in adjacent_mem_locations()
13863 val_diff = val1 - val0; in adjacent_mem_locations()
13871 && (val0 == 0 || val1 == 0 || val0 == 4 || val1 == 4) in adjacent_mem_locations()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/arm/
H A Darm.cc14007 HOST_WIDE_INT val0 = 0, val1 = 0; in adjacent_mem_locations() local
14014 val0 = INTVAL (XEXP (XEXP (a, 0), 1)); in adjacent_mem_locations()
14030 if (!const_ok_for_op (val0, PLUS) || !const_ok_for_op (val1, PLUS)) in adjacent_mem_locations()
14038 val_diff = val1 - val0; in adjacent_mem_locations()
14046 && (val0 == 0 || val1 == 0 || val0 == 4 || val1 == 4) in adjacent_mem_locations()
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-arm.c14499 int val0 = inst.operands[0].imm & 0x1f; in do_t_branch_future() local
14500 int diff = val2 - val0; in do_t_branch_future()
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-arm.c14529 int val0 = inst.operands[0].imm & 0x1f; in do_t_branch_future() local
14530 int diff = val2 - val0; in do_t_branch_future()
/netbsd-src/external/gpl3/gdb/dist/gdb/
H A DChangeLog-201817079 the case where VALUE_LVAL (val0) is not lval_memory.

12