/third_party/pcre2/pcre2/src/sljit/ |
H A D | sljitNativeMIPS_32.c | 66 static sljit_s32 call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, sljit_ins *ins_ptr, sljit_u32 *extra_space) in call_with_args() argument 68 sljit_u32 is_tail_call = *extra_space & SLJIT_CALL_RETURN; in call_with_args() 125 *extra_space = offset; in call_with_args() 128 *extra_space = 16; in call_with_args() 133 *extra_space = 0; in call_with_args() 199 sljit_u32 extra_space = 0; in sljit_emit_call() local 210 extra_space = (sljit_u32)type; in sljit_emit_call() 211 PTR_FAIL_IF(call_with_args(compiler, arg_types, &ins, &extra_space)); in sljit_emit_call() 220 if (!(type & SLJIT_CALL_RETURN) || extra_space > 0) { in sljit_emit_call() 236 if (extra_space in sljit_emit_call() 255 sljit_u32 extra_space = (sljit_u32)type; sljit_emit_icall() local [all...] |
H A D | sljitNativeX86_32.c | 736 sljit_s32 *extra_space, sljit_s32 arg_types, in tail_call_with_args() 780 *extra_space = 0; in tail_call_with_args() 895 *extra_space = args_size; in tail_call_with_args() 949 static sljit_s32 emit_tail_call_end(struct sljit_compiler *compiler, sljit_s32 extra_space) in emit_tail_call_end() argument 954 BINARY_IMM32(ADD, extra_space, SLJIT_SP, 0); in emit_tail_call_end() 735 tail_call_with_args(struct sljit_compiler *compiler, sljit_s32 *extra_space, sljit_s32 arg_types, sljit_s32 src, sljit_sw srcw) tail_call_with_args() argument
|
H A D | sljitNativeARM_32.c | 2729 static sljit_s32 softfloat_call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, sljit_s32 *src, sljit_u32 *extra_space) in softfloat_call_with_args() argument 2731 sljit_u32 is_tail_call = *extra_space & SLJIT_CALL_RETURN; in softfloat_call_with_args() 2778 *extra_space = offset; in softfloat_call_with_args() 2787 *extra_space = 0; in softfloat_call_with_args() 2913 sljit_u32 extra_space = (sljit_u32)type; in sljit_emit_call() local 2921 PTR_FAIL_IF(softfloat_call_with_args(compiler, arg_types, NULL, &extra_space)); in sljit_emit_call() 2922 SLJIT_ASSERT((extra_space & 0x7) == 0); in sljit_emit_call() 2924 if ((type & SLJIT_CALL_RETURN) && extra_space == 0) in sljit_emit_call() 2931 if (extra_space > 0) { in sljit_emit_call() 2934 TMP_REG2, SLJIT_SP, extra_space in sljit_emit_call() 3010 sljit_u32 extra_space = (sljit_u32)type; sljit_emit_icall() local [all...] |
H A D | sljitNativeARM_T2_32.c | 2306 static sljit_s32 softfloat_call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, sljit_s32 *src, sljit_u32 *extra_space) in softfloat_call_with_args() argument 2308 sljit_u32 is_tail_call = *extra_space & SLJIT_CALL_RETURN; in softfloat_call_with_args() 2355 *extra_space = offset; in softfloat_call_with_args() 2364 *extra_space = 0; in softfloat_call_with_args() 2487 sljit_u32 extra_space = (sljit_u32)type; in sljit_emit_call() local 2495 PTR_FAIL_IF(softfloat_call_with_args(compiler, arg_types, NULL, &extra_space)); in sljit_emit_call() 2496 SLJIT_ASSERT((extra_space & 0x7) == 0); in sljit_emit_call() 2498 if ((type & SLJIT_CALL_RETURN) && extra_space == 0) in sljit_emit_call() 2505 if (extra_space > 0) { in sljit_emit_call() 2508 | RN4(SLJIT_SP) | (extra_space in sljit_emit_call() 2576 sljit_u32 extra_space = (sljit_u32)type; sljit_emit_icall() local [all...] |
/third_party/skia/tests/ |
H A D | DescriptorTest.cpp | 44 const size_t extra_space = 100; in DEF_TEST() local 48 auto desc = SkDescriptor::Alloc(size + extra_space); in DEF_TEST()
|
/third_party/ffmpeg/libavcodec/ |
H A D | iff.c | 335 int extra_space = 1; in extract_header() local 338 extra_space = 4; in extract_header() 345 s->ham_palbuf = av_malloc(extra_space * (ham_count << !!(s->masking == MASK_HAS_MASK)) * sizeof (uint32_t) + AV_INPUT_BUFFER_PADDING_SIZE); in extract_header()
|
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | assembler-ppc.h | 200 inline void CheckTrampolinePoolQuick(int extra_space = 0) { in CheckTrampolinePoolQuick() 201 if (pc_offset() >= next_trampoline_check_ - extra_space) { in CheckTrampolinePoolQuick()
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | macro-assembler-arm64.cc | 2717 int extra_space, in TruncateDoubleToI() 2755 int slots_to_claim = RoundUp(extra_space + 1, 2); in TruncateDoubleToI() 2766 // sp[8]: Extra space reserved for caller (if extra_space != 0). in TruncateDoubleToI() 2716 EnterExitFrame(bool save_doubles, const Register& scratch, int extra_space, StackFrame::Type frame_type) TruncateDoubleToI() argument
|
H A D | macro-assembler-arm64.h | 1998 // The 'extra_space' argument can be used to allocate some space in the exit 2008 // sp[8]: Memory reserved for the caller if extra_space != 0. 2015 int extra_space = 0,
|