HomeSort by relevance Sort by last modified time
    Searched refs:code_ptr (Results 1 - 14 of 14) sorted by null

  /external/e2fsprogs/lib/ss/
request_tbl.c 22 void ss_add_request_table(int sci_idx, ssrt *rqtbl_ptr, int position, int *code_ptr)
35 *code_ptr = errno;
48 *code_ptr = 0;
51 void ss_delete_request_table(int sci_idx, ssrt *rqtbl_ptr, int *code_ptr)
56 *code_ptr = SS_ET_TABLE_NOT_FOUND;
62 *code_ptr = 0;
ss_internal.h 81 #define ss_current_request(sci_idx,code_ptr) \
82 (*code_ptr=0,ss_info(sci_idx)->current_request)
83 void ss_add_info_dir (int sci_idx, char *info_dir, int *code_ptr);
84 void ss_delete_info_dir (int sci_idx, char *info_dir, int *code_ptr);
help.c 127 void ss_add_info_dir(int sci_idx, char *info_dir, int *code_ptr)
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)
173 *code_ptr = 0;
177 *code_ptr = SS_ET_NO_INFO_DIR;
invocation.c 26 int *code_ptr)
32 *code_ptr = 0;
47 *code_ptr = errno;
64 new_table->abbrev_info = ss_abbrev_initialize("/etc/passwd", code_ptr);
  /external/harfbuzz_ng/src/hb-ucdn/
ucdn.c 153 static uint32_t decode_utf16(const unsigned short **code_ptr)
155 const unsigned short *code = *code_ptr;
158 *code_ptr += 1;
161 *code_ptr += 2;
  /external/chromium_org/v8/src/
platform-macos.cc 136 char* code_ptr = getsectdatafromheader_64( local
143 char* code_ptr = getsectdatafromheader(header, SEG_TEXT, SECT_TEXT, &size); local
145 if (code_ptr == NULL) continue;
147 const uintptr_t start = reinterpret_cast<uintptr_t>(code_ptr) + slide;
  /external/qemu/tcg/i386/
tcg-target.c 122 static void patch_reloc(uint8_t *code_ptr, int type,
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 += 1
    [all...]
  /art/compiler/optimizing/
builder.cc 177 const uint16_t* code_ptr = code_item.insns_; local
193 ComputeBranchTargets(code_ptr, code_end);
200 while (code_ptr < code_end) {
203 const Instruction& instruction = *Instruction::At(code_ptr);
206 code_ptr += instruction.SizeInCodeUnits();
233 void HGraphBuilder::ComputeBranchTargets(const uint16_t* code_ptr, const uint16_t* code_end) {
235 branch_targets_.SetSize(code_end - code_ptr);
245 while (code_ptr < code_end) {
246 const Instruction& instruction = *Instruction::At(code_ptr);
255 code_ptr += instruction.SizeInCodeUnits()
    [all...]
  /art/runtime/
exception_test.cc 93 const uint8_t* code_ptr = &fake_header_code_and_maps_[mapping_table_offset]; local
97 method_f_->SetEntryPointFromQuickCompiledCode(code_ptr);
102 method_g_->SetEntryPointFromQuickCompiledCode(code_ptr);
  /art/compiler/
common_compiler_test.cc 176 const void* code_ptr; local
204 code_ptr = &(*chunk)[code_offset];
207 code_ptr = &(*code)[0];
209 MakeExecutable(code_ptr, code->size());
210 const void* method_code = CompiledMethod::CodePointer(code_ptr,
  /external/qemu/tcg/
tcg.c 68 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,
159 patch_reloc(code_ptr, type, l->u.value, addend)
    [all...]
tcg.h 478 uint8_t *code_ptr; member in struct:TCGContext
  /art/compiler/dex/
mir_graph.cc 140 int MIRGraph::ParseInsn(const uint16_t* code_ptr, MIR::DecodedInstruction* decoded_instruction) {
141 const Instruction* inst = Instruction::At(code_ptr);
400 int width, int flags, const uint16_t* code_ptr,
458 } else if (code_ptr < code_end) {
544 const uint16_t* code_ptr, const uint16_t* code_end) {
596 if (code_ptr < code_end) {
660 const uint16_t* code_ptr = current_code_item_->insns_; local
723 while (code_ptr < code_end) {
727 int width = ParseInsn(code_ptr, &insn->dalvikInsn);
750 if ((width == 1) && ((current_offset_ & 0x1) == 0x1) && ((code_end - code_ptr) > 1))
    [all...]
mir_graph.h     [all...]

Completed in 606 milliseconds