Searched refs:init_value (Results 1 - 17 of 17) sorted by relevance

/external/pcre/dist/sljit/
H A DsljitNativeSPARC_32.c142 static SLJIT_INLINE sljit_si emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw init_value) argument
144 FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((init_value >> 10) & 0x3fffff), DR(dst)));
145 return push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (init_value & 0x3ff), DR(dst));
H A DsljitNativePPC_32.c247 static SLJIT_INLINE sljit_si emit_const(struct sljit_compiler *compiler, sljit_si reg, sljit_sw init_value) argument
249 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 16)));
250 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value));
H A DsljitNativeMIPS_64.c439 static SLJIT_INLINE sljit_si emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw init_value) argument
441 FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 48), DR(dst)));
442 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 32), DR(dst)));
444 FAIL_IF(push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value >> 16), DR(dst)));
446 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst));
H A DsljitNativePPC_64.c392 static SLJIT_INLINE sljit_si emit_const(struct sljit_compiler *compiler, sljit_si reg, sljit_sw init_value) argument
394 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 48)));
395 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value >> 32)));
397 FAIL_IF(push_inst(compiler, ORIS | S(reg) | A(reg) | IMM(init_value >> 16)));
398 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value));
H A DsljitNativeMIPS_32.c344 static SLJIT_INLINE sljit_si emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw init_value) argument
346 FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 16), DR(dst)));
347 return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst));
H A DsljitNativeSPARC_common.c1441 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value) argument
1447 check_sljit_emit_const(compiler, dst, dstw, init_value);
1456 PTR_FAIL_IF(emit_const(compiler, reg, init_value));
H A DsljitLir.h1043 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value);
H A DsljitLir.c1522 static SLJIT_INLINE void check_sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value) argument
1528 SLJIT_UNUSED_ARG(init_value);
1537 fprintf(compiler->verbose, ", #%" SLJIT_PRINT_D "d\n", init_value);
H A DsljitNativeARM_64.c1985 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value) argument
1991 check_sljit_emit_const(compiler, dst, dstw, init_value);
1999 PTR_FAIL_IF(emit_imm64_const(compiler, dst_r, init_value));
H A DsljitNativeARM_T2_32.c2039 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value) argument
2045 check_sljit_emit_const(compiler, dst, dstw, init_value);
2053 PTR_FAIL_IF(emit_imm32_const(compiler, dst_r, init_value));
H A DsljitNativeARM_32.c2528 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value) argument
2534 check_sljit_emit_const(compiler, dst, dstw, init_value);
2543 PTR_FAIL_IF(push_inst_with_unique_literal(compiler, EMIT_DATA_TRANSFER(WORD_DATA | LOAD_DATA, 1, 0, reg, TMP_PC, 0), init_value));
2546 PTR_FAIL_IF(emit_imm(compiler, reg, init_value));
H A DsljitNativeX86_common.c2862 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value) argument
2871 check_sljit_emit_const(compiler, dst, dstw, init_value);
2884 if (emit_load_imm64(compiler, reg, init_value))
2890 if (emit_mov(compiler, dst, dstw, SLJIT_IMM, init_value))
H A DsljitNativeMIPS_common.c2130 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value) argument
2136 check_sljit_emit_const(compiler, dst, dstw, init_value);
2145 PTR_FAIL_IF(emit_const(compiler, reg, init_value));
H A DsljitNativePPC_common.c2369 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value) argument
2375 check_sljit_emit_const(compiler, dst, dstw, init_value);
2384 PTR_FAIL_IF(emit_const(compiler, reg, init_value));
H A DsljitNativeTILEGX_64.c2547 SLJIT_API_FUNC_ATTRIBUTE struct sljit_const * sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value) argument
2555 check_sljit_emit_const(compiler, dst, dstw, init_value);
2564 PTR_FAIL_IF(emit_const_64(compiler, reg, init_value, 1));
/external/chromium_org/courgette/
H A Dmemory_allocator.h388 CheckBool resize(size_t size, const T& init_value) WARN_UNUSED_RESULT {
393 buffer_[i] = init_value;
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DExprNodes.py2342 init_value = 'PyList_GET_SIZE(%s) - 1' % self.result()
2344 init_value = 'PyTuple_GET_SIZE(%s) - 1' % self.result()
2346 init_value = '0'
2353 init_value

Completed in 386 milliseconds