/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dmub/src/ |
H A D | dmub_reg.h | 67 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \ argument 68 REG_SET_N(reg, 2, init_value, \ 72 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \ argument 73 REG_SET_N(reg, 3, init_value, \ 78 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \ argument 79 REG_SET_N(reg, 4, init_value, \
|
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/ |
H A D | reg_helper.h | 69 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \ argument 70 REG_SET_N(reg, 2, init_value, \ 74 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \ argument 75 REG_SET_N(reg, 3, init_value, \ 80 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \ argument 81 REG_SET_N(reg, 4, init_value, \ 87 #define REG_SET_5(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \ argument 89 REG_SET_N(reg, 5, init_value, \ 96 #define REG_SET_6(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \ argument 98 REG_SET_N(reg, 6, init_value, \ [all …]
|
/netbsd-src/sys/external/bsd/sljit/dist/sljit_src/ |
H A D | sljitNativePPC_64.c | 373 …IT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value) in emit_const() argument 375 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 48))); in emit_const() 376 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value >> 32))); in emit_const() 378 FAIL_IF(push_inst(compiler, ORIS | S(reg) | A(reg) | IMM(init_value >> 16))); in emit_const() 379 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value)); in emit_const()
|
H A D | sljitNativeSPARC_32.c | 144 …IT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value) in emit_const() argument 146 FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((init_value >> 10) & 0x3fffff), DR(dst))); in emit_const() 147 return push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (init_value & 0x3ff), DR(dst)); in emit_const()
|
H A D | sljitNativePPC_32.c | 233 …IT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value) in emit_const() argument 235 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 16))); in emit_const() 236 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value)); in emit_const()
|
H A D | sljitNativeMIPS_64.c | 511 …IT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value) in emit_const() argument 513 FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 48), DR(dst))); in emit_const() 514 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 32), DR(dst))); in emit_const() 516 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 16), DR(dst))); in emit_const() 518 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst)); in emit_const()
|
H A D | sljitNativeMIPS_32.c | 417 …IT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value) in emit_const() argument 419 FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 16), DR(dst))); in emit_const() 420 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst)); in emit_const()
|
H A D | sljitNativeSPARC_common.c | 1431 …ljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 1437 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 1446 PTR_FAIL_IF(emit_const(compiler, reg, init_value)); in sljit_emit_const()
|
H A D | sljitNativeARM_32.c | 2259 …ljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 2265 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 2274 …ue_literal(compiler, EMIT_DATA_TRANSFER(WORD_DATA | LOAD_DATA, 1, 0, reg, TMP_PC, 0), init_value)); in sljit_emit_const() 2277 PTR_FAIL_IF(emit_imm(compiler, reg, init_value)); in sljit_emit_const()
|
H A D | sljitLir.h | 1201 …jit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value);
|
H A D | sljitLir.c | 1577 …ljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in check_sljit_emit_const() argument 1579 SLJIT_UNUSED_ARG(init_value); in check_sljit_emit_const() 1588 fprintf(compiler->verbose, ", #%" SLJIT_PRINT_D "d\n", init_value); in check_sljit_emit_const()
|
H A D | sljitNativeARM_T2_32.c | 1890 …ljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 1896 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 1904 PTR_FAIL_IF(emit_imm32_const(compiler, dst_r, init_value)); in sljit_emit_const()
|
H A D | sljitNativeX86_common.c | 2812 …ljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) argument 2821 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); 2834 if (emit_load_imm64(compiler, reg, init_value)) 2840 if (emit_mov(compiler, dst, dstw, SLJIT_IMM, init_value))
|
H A D | sljitNativeARM_64.c | 2025 …ljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 2031 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 2039 PTR_FAIL_IF(emit_imm64_const(compiler, dst_r, init_value)); in sljit_emit_const()
|
H A D | sljitNativeMIPS_common.c | 1981 …ljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 1987 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 1996 PTR_FAIL_IF(emit_const(compiler, reg, init_value)); in sljit_emit_const()
|
H A D | sljitNativeTILEGX_64.c | 2507 …ljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 2515 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 2524 PTR_FAIL_IF(emit_const_64(compiler, reg, init_value, 1)); in sljit_emit_const()
|
H A D | sljitNativePPC_common.c | 2374 …ljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) in sljit_emit_const() argument 2380 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value)); in sljit_emit_const() 2389 PTR_FAIL_IF(emit_const(compiler, reg, init_value)); in sljit_emit_const()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/ |
H A D | libgccjit.h | 1022 gcc_jit_rvalue *init_value);
|
H A D | libgccjit++.h | 517 lvalue set_initializer_rvalue (rvalue init_value); 1850 lvalue::set_initializer_rvalue (rvalue init_value) in set_initializer_rvalue() argument 1854 init_value.get_inner_rvalue ())); in set_initializer_rvalue()
|
/netbsd-src/crypto/external/bsd/openssl/dist/Configurations/ |
H A D | descrip.mms.tmpl | 832 my $init_value = 0x00B704CE; 835 my $crc = $init_value;
|
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/topics/ |
H A D | expressions.rst | 889 gcc_jit_rvalue *init_value)
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | ira.cc | 4244 init_live_subregs (bool init_value, sbitmap *live_subregs, in init_live_subregs() argument 4259 if (init_value) in init_live_subregs()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | ira.c | 4115 init_live_subregs (bool init_value, sbitmap *live_subregs, in init_live_subregs() argument 4130 if (init_value) in init_live_subregs()
|
/netbsd-src/external/gpl3/gdb.old/dist/bfd/ |
H A D | ChangeLog-9193 | 1855 * libhppa.h (hppa_field_adjust): Remove unused `init_value' variable.
|
/netbsd-src/external/gpl3/gdb/dist/bfd/ |
H A D | ChangeLog-9193 | 1855 * libhppa.h (hppa_field_adjust): Remove unused `init_value' variable.
|