Searched defs:code_ptr (Results 1 - 18 of 18) sorted by relevance

/external/e2fsprogs/lib/ss/
H A Dinvocation.c26 int *code_ptr)
32 *code_ptr = 0;
47 *code_ptr = errno;
64 new_table->abbrev_info = ss_abbrev_initialize("/etc/passwd", code_ptr);
24 ss_create_invocation(const char *subsystem_name, const char *version_string, void *info_ptr, ss_request_table *request_table_ptr, int *code_ptr) argument
H A Drequest_tbl.c22 void ss_add_request_table(int sci_idx, ssrt *rqtbl_ptr, int position, int *code_ptr) argument
35 *code_ptr = errno;
48 *code_ptr = 0;
51 void ss_delete_request_table(int sci_idx, ssrt *rqtbl_ptr, int *code_ptr) argument
56 *code_ptr = SS_ET_TABLE_NOT_FOUND;
62 *code_ptr = 0;
H A Dhelp.c127 void ss_add_info_dir(int sci_idx, char *info_dir, int *code_ptr) argument
136 *code_ptr = SS_ET_NO_INFO_DIR;
140 *code_ptr = errno;
151 *code_ptr = errno;
158 *code_ptr = 0;
161 void ss_delete_info_dir(int sci_idx, char *info_dir, int *code_ptr) argument
173 *code_ptr = 0;
177 *code_ptr = SS_ET_NO_INFO_DIR;
/external/pcre/dist/sljit/
H A DsljitNativeX86_32.c41 static sljit_ub* generate_far_jump_code(struct sljit_jump *jump, sljit_ub *code_ptr, sljit_si type) argument
44 *code_ptr++ = JMP_i32;
48 *code_ptr++ = CALL_i32;
52 *code_ptr++ = GROUP_0F;
53 *code_ptr++ = get_jump_code(type);
60 *(sljit_sw*)code_ptr = jump->u.target - (jump->addr + 4);
61 code_ptr += 4;
63 return code_ptr;
H A DsljitNativeX86_64.c42 static sljit_ub* generate_far_jump_code(struct sljit_jump *jump, sljit_ub *code_ptr, sljit_si type) argument
46 *code_ptr++ = get_jump_code(type ^ 0x1) - 0x10;
47 *code_ptr++ = 10 + 3;
51 *code_ptr++ = REX_W | REX_B;
52 *code_ptr++ = MOV_r_i32 + 1;
53 jump->addr = (sljit_uw)code_ptr;
58 *(sljit_sw*)code_ptr = jump->u.target;
60 code_ptr += sizeof(sljit_sw);
61 *code_ptr++ = REX_B;
62 *code_ptr
68 generate_fixed_jump(sljit_ub *code_ptr, sljit_sw addr, sljit_si type) argument
[all...]
H A DsljitNativeARM_32.c266 static sljit_uw patch_pc_relative_loads(sljit_uw *last_pc_patch, sljit_uw *code_ptr, sljit_uw* const_pool, sljit_uw cpool_size) argument
274 SLJIT_ASSERT(const_pool - code_ptr <= CONST_POOL_ALIGNMENT);
281 while (last_pc_patch < code_ptr) {
390 static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_uw *code_ptr, sljit_uw *code) argument
399 code_ptr--;
402 diff = ((sljit_sw)jump->u.target - (sljit_sw)(code_ptr + 2));
405 diff = ((sljit_sw)(code + jump->u.label->size) - (sljit_sw)(code_ptr + 2));
414 *code_ptr = (BL - CONDITIONAL) | (*(code_ptr + 1) & COND_MASK);
421 *code_ptr
558 sljit_uw *code_ptr; local
[all...]
H A DsljitNativeARM_64.c155 static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code) argument
171 diff = (sljit_sw)target_addr - (sljit_sw)(code_ptr + 4);
176 code_ptr[-5] ^= (jump->flags & IS_CBZ) ? (0x1 << 24) : 0x1;
191 code_ptr[-5] -= (2 << 5);
192 code_ptr[-2] = code_ptr[0];
197 code_ptr[-5] -= (1 << 5);
199 code_ptr[-1] = code_ptr[0];
211 sljit_ins *code_ptr; local
[all...]
H A DsljitNativeARM_T2_32.c224 static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_uh *code_ptr, sljit_uh *code) argument
235 diff = ((sljit_sw)jump->u.target - (sljit_sw)(code_ptr + 2)) >> 1;
239 diff = ((sljit_sw)(code + jump->u.label->size) - (sljit_sw)(code_ptr + 2)) >> 1;
346 sljit_uh *code_ptr; local
363 code_ptr = code;
373 *code_ptr = *buf_ptr++;
379 label->addr = ((sljit_uw)code_ptr) | 0x1;
380 label->size = code_ptr - code;
384 jump->addr = (sljit_uw)code_ptr - ((jump->flags & IS_COND) ? 10 : 8);
385 code_ptr
[all...]
H A DsljitNativeSPARC_common.c198 static SLJIT_INLINE sljit_ins* detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code) argument
206 return code_ptr;
268 return code_ptr;
275 sljit_ins *code_ptr; local
293 code_ptr = code;
302 *code_ptr = *buf_ptr++;
309 label->addr = (sljit_uw)code_ptr;
310 label->size = code_ptr - code;
315 jump->addr = (sljit_uw)(code_ptr - 3);
317 jump->addr = (sljit_uw)(code_ptr
[all...]
H A DsljitNativeX86_common.c386 static sljit_ub* generate_far_jump_code(struct sljit_jump *jump, sljit_ub *code_ptr, sljit_si type);
389 static sljit_ub* generate_fixed_jump(sljit_ub *code_ptr, sljit_sw addr, sljit_si type);
392 static sljit_ub* generate_near_jump_code(struct sljit_jump *jump, sljit_ub *code_ptr, sljit_ub *code, sljit_si type) argument
405 return generate_far_jump_code(jump, code_ptr, type);
410 *code_ptr++ = JMP_i8;
412 *code_ptr++ = JMP_i32;
417 *code_ptr++ = CALL_i32;
421 *code_ptr++ = get_jump_code(type) - 0x10;
425 *code_ptr++ = GROUP_0F;
426 *code_ptr
449 sljit_ub *code_ptr; local
[all...]
H A DsljitNativeMIPS_common.c221 static SLJIT_INLINE sljit_ins* detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code) argument
230 return code_ptr;
233 return code_ptr;
349 return code_ptr;
353 static __attribute__ ((noinline)) void sljit_cache_flush(void* code, void* code_ptr) argument
355 SLJIT_CACHE_FLUSH(code, code_ptr);
363 sljit_ins *code_ptr; local
381 code_ptr = code;
390 *code_ptr = *buf_ptr++;
397 label->addr = (sljit_uw)code_ptr;
[all...]
H A DsljitNativePPC_common.c248 static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code) argument
274 diff = ((sljit_sw)target_addr - (sljit_sw)(code_ptr)) & ~0x3l;
321 sljit_ins *code_ptr; local
346 code_ptr = code;
355 *code_ptr = *buf_ptr++;
362 label->addr = (sljit_uw)code_ptr;
363 label->size = code_ptr - code;
368 jump->addr = (sljit_uw)(code_ptr - 3);
370 jump->addr = (sljit_uw)(code_ptr - 6);
372 if (detect_jump_type(jump, code_ptr, cod
[all...]
H A DsljitNativeTILEGX_64.c903 static SLJIT_INLINE sljit_ins * detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code) argument
911 return code_ptr;
968 return code_ptr;
994 return code_ptr;
1001 sljit_ins *code_ptr; local
1019 code_ptr = code;
1028 *code_ptr = *buf_ptr++;
1035 label->addr = (sljit_uw) code_ptr;
1036 label->size = code_ptr - code;
1042 jump->addr = (sljit_uw)(code_ptr
[all...]
/external/chromium_org/v8/src/base/platform/
H A Dplatform-macos.cc137 char* code_ptr = getsectdatafromheader_64( local
144 char* code_ptr = getsectdatafromheader(header, SEG_TEXT, SECT_TEXT, &size); local
146 if (code_ptr == NULL) continue;
148 const uintptr_t start = reinterpret_cast<uintptr_t>(code_ptr) + slide;
/external/harfbuzz_ng/src/hb-ucdn/
H A Ducdn.c153 static uint32_t decode_utf16(const unsigned short **code_ptr) argument
155 const unsigned short *code = *code_ptr;
158 *code_ptr += 1;
161 *code_ptr += 2;
/external/qemu/tcg/
H A Dtcg.c68 static void patch_reloc(uint8_t *code_ptr, int type,
122 *s->code_ptr++ = v;
127 uint8_t *p = s->code_ptr;
129 s->code_ptr = p + 2;
134 uint8_t *p = s->code_ptr;
136 s->code_ptr = p + 4;
141 uint8_t *p = s->code_ptr;
143 s->code_ptr = p + 8;
148 static void tcg_out_reloc(TCGContext *s, uint8_t *code_ptr, int type, argument
159 patch_reloc(code_ptr, typ
[all...]
H A Dtcg.h478 uint8_t *code_ptr; member in struct:TCGContext
/external/qemu/tcg/i386/
H A Dtcg-target.c122 static void patch_reloc(uint8_t *code_ptr, int type, argument
128 value -= (uintptr_t)code_ptr;
132 *(uint32_t *)code_ptr = value;
135 value -= (uintptr_t)code_ptr;
139 *(uint8_t *)code_ptr = value;
449 intptr_t pc = (intptr_t)s->code_ptr + 5 + ~rm;
569 diff = arg - ((uintptr_t)s->code_ptr + 7);
767 val = l->u.value - (intptr_t)s->code_ptr;
794 tcg_out_reloc(s, s->code_ptr, R_386_PC8, label_index, -1);
795 s->code_ptr
[all...]

Completed in 230 milliseconds