HomeSort by: relevance | last modified time | path
    Searched refs:init_value (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/sys/external/bsd/drm2/dist/drm/amd/display/dmub/src/
dmub_reg.h 67 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \
68 REG_SET_N(reg, 2, init_value, \
72 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \
73 REG_SET_N(reg, 3, init_value, \
78 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \
79 REG_SET_N(reg, 4, init_value, \
  /src/external/gpl3/gdb/dist/sim/frv/
registers.h 31 USI init_value; /* initial value */ member in struct:__anon19480
  /src/external/gpl3/gdb.old/dist/sim/frv/
registers.h 31 USI init_value; /* initial value */ member in struct:__anon22219
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/
reg_helper.h 69 #define REG_SET_2(reg, init_value, f1, v1, f2, v2) \
70 REG_SET_N(reg, 2, init_value, \
74 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \
75 REG_SET_N(reg, 3, init_value, \
80 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \
81 REG_SET_N(reg, 4, init_value, \
87 #define REG_SET_5(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \
89 REG_SET_N(reg, 5, init_value, \
96 #define REG_SET_6(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4, \
98 REG_SET_N(reg, 6, init_value, \
    [all...]
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeSPARC_32.c 144 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value)
146 FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((init_value >> 10) & 0x3fffff), DR(dst)));
147 return push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (init_value & 0x3ff), DR(dst));
sljitNativePPC_64.c 373 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value)
375 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 48)));
376 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value >> 32)));
378 FAIL_IF(push_inst(compiler, ORIS | S(reg) | A(reg) | IMM(init_value >> 16)));
379 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value));
sljitNativePPC_32.c 233 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value)
235 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 16)));
236 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value));
sljitNativeMIPS_64.c 511 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value)
513 FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 48), DR(dst)));
514 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 32), DR(dst)));
516 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 16), DR(dst)));
518 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst));
sljitNativeMIPS_32.c 417 static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value)
419 FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 16), DR(dst)));
420 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst));
sljitNativeSPARC_common.c 1431 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
1437 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));
1446 PTR_FAIL_IF(emit_const(compiler, reg, init_value));
sljitLir.h 1201 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value);
sljitNativeARM_32.c 2259 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
2265 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));
2274 PTR_FAIL_IF(push_inst_with_unique_literal(compiler, EMIT_DATA_TRANSFER(WORD_DATA | LOAD_DATA, 1, 0, reg, TMP_PC, 0), init_value));
2277 PTR_FAIL_IF(emit_imm(compiler, reg, init_value));
sljitLir.c 1577 static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
1579 SLJIT_UNUSED_ARG(init_value);
1588 fprintf(compiler->verbose, ", #%" SLJIT_PRINT_D "d\n", init_value);
sljitNativeARM_64.c 2025 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
2031 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));
2039 PTR_FAIL_IF(emit_imm64_const(compiler, dst_r, init_value));
sljitNativeARM_T2_32.c 1890 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
1896 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));
1904 PTR_FAIL_IF(emit_imm32_const(compiler, dst_r, init_value));
sljitNativeMIPS_common.c 1982 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
1988 CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));
1997 PTR_FAIL_IF(emit_const(compiler, reg, init_value));
sljitNativeX86_common.c 2812 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
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))
  /src/external/gpl3/gdb/dist/gdb/
gdbarch.py 212 init_value = c.predefault or "0" variable
213 print(f" if (gdbarch->{c.name} == {init_value})", file=f)
232 init_value = c.predefault or "0" variable
233 print(f" if (gdbarch->{c.name} == {init_value})", file=f)
360 init_value = c.predefault or "0" variable
362 print(f" gdb_assert (gdbarch->{c.name} != {init_value});", file=f)
  /src/external/gpl3/gdb.old/dist/gdb/
gdbarch.py 212 init_value = c.predefault or "0" variable
213 print(f" if (gdbarch->{c.name} == {init_value})", file=f)
232 init_value = c.predefault or "0" variable
233 print(f" if (gdbarch->{c.name} == {init_value})", file=f)
360 init_value = c.predefault or "0" variable
362 print(f" gdb_assert (gdbarch->{c.name} != {init_value});", file=f)
  /src/external/gpl3/gcc/dist/gcc/jit/
libgccjit.h 1031 gcc_jit_rvalue *init_value);
libgccjit++.h 518 lvalue set_initializer_rvalue (rvalue init_value);
1857 lvalue::set_initializer_rvalue (rvalue init_value)
1861 init_value.get_inner_rvalue ()));
  /src/external/gpl3/gcc.old/dist/gcc/jit/
libgccjit.h 1022 gcc_jit_rvalue *init_value);
libgccjit++.h 517 lvalue set_initializer_rvalue (rvalue init_value);
1850 lvalue::set_initializer_rvalue (rvalue init_value)
1854 init_value.get_inner_rvalue ()));
  /src/crypto/external/apache2/openssl/dist/Configurations/
descrip.mms.tmpl 870 my $init_value = 0x00B704CE;
873 my $crc = $init_value;
  /src/crypto/external/bsd/openssl/dist/Configurations/
descrip.mms.tmpl 832 my $init_value = 0x00B704CE;
835 my $crc = $init_value;

Completed in 51 milliseconds

1 2