/external/v8/src/ |
D | interpreter-irregexp.cc | 84 const byte* pc, in TraceInterpreter() argument 97 pc - code_base, in TraceInterpreter() 104 printf(", %02x", pc[i]); in TraceInterpreter() 108 unsigned char b = pc[i]; in TraceInterpreter() 123 pc, \ 135 static int32_t Load32Aligned(const byte* pc) { in Load32Aligned() argument 136 ASSERT((reinterpret_cast<intptr_t>(pc) & 3) == 0); in Load32Aligned() 137 return *reinterpret_cast<const int32_t *>(pc); in Load32Aligned() 141 static int32_t Load16Aligned(const byte* pc) { in Load16Aligned() argument 142 ASSERT((reinterpret_cast<intptr_t>(pc) & 1) == 0); in Load16Aligned() [all …]
|
D | disassembler.cc | 45 for (byte* pc = begin; pc < end; pc++) { in Dump() local 47 PrintF("%" V8PRIxPTR " %4" V8PRIdPTR " %02x\n", pc, pc - begin, *pc); in Dump() 50 reinterpret_cast<uintptr_t>(pc), pc - begin, *pc); in Dump() 59 virtual const char* NameOfAddress(byte* pc) const; 67 const char* V8NameConverter::NameOfAddress(byte* pc) const { in NameOfAddress() 70 const char* name = Builtins::Lookup(pc); in NameOfAddress() 72 OS::SNPrintF(buffer, "%s (%p)", name, pc); in NameOfAddress() 77 int offs = static_cast<int>(pc - code_->instruction_start()); in NameOfAddress() 80 OS::SNPrintF(buffer, "%d (%p)", offs, pc); in NameOfAddress() 85 return disasm::NameConverter::NameOfAddress(pc); in NameOfAddress() [all …]
|
/external/libvpx/vp8/decoder/ |
D | decodframe.c | 45 VP8_COMMON *const pc = & pbi->common; in vp8cx_init_de_quantizer() local 49 pc->Y1dequant[Q][0] = (short)vp8_dc_quant(Q, pc->y1dc_delta_q); in vp8cx_init_de_quantizer() 50 pc->Y2dequant[Q][0] = (short)vp8_dc2quant(Q, pc->y2dc_delta_q); in vp8cx_init_de_quantizer() 51 pc->UVdequant[Q][0] = (short)vp8_dc_uv_quant(Q, pc->uvdc_delta_q); in vp8cx_init_de_quantizer() 58 pc->Y1dequant[Q][rc] = (short)vp8_ac_yquant(Q); in vp8cx_init_de_quantizer() 59 pc->Y2dequant[Q][rc] = (short)vp8_ac2quant(Q, pc->y2ac_delta_q); in vp8cx_init_de_quantizer() 60 pc->UVdequant[Q][rc] = (short)vp8_ac_uv_quant(Q, pc->uvac_delta_q); in vp8cx_init_de_quantizer() 70 VP8_COMMON *const pc = & pbi->common; in mb_init_dequantizer() local 82 QIndex = pc->base_qindex + xd->segment_feature_data[MB_LVL_ALT_Q][mbmi->segment_id]; in mb_init_dequantizer() 87 QIndex = pc->base_qindex; in mb_init_dequantizer() [all …]
|
D | threading.c | 42 VP8_COMMON *const pc = & pbi->common; in vp8_setup_decoding_thread_data() local 56 mbd->mode_info_context = pc->mi + pc->mode_info_stride * (i + 1); in vp8_setup_decoding_thread_data() 57 mbd->mode_info_stride = pc->mode_info_stride; in vp8_setup_decoding_thread_data() 59 mbd->frame_type = pc->frame_type; in vp8_setup_decoding_thread_data() 60 mbd->frames_since_golden = pc->frames_since_golden; in vp8_setup_decoding_thread_data() 61 mbd->frames_till_alt_ref_frame = pc->frames_till_alt_ref_frame; in vp8_setup_decoding_thread_data() 63 mbd->pre = pc->yv12_fb[pc->lst_fb_idx]; in vp8_setup_decoding_thread_data() 64 mbd->dst = pc->yv12_fb[pc->new_fb_idx]; in vp8_setup_decoding_thread_data() 89 for (i=0; i< pc->mb_rows; i++) in vp8_setup_decoding_thread_data() 105 VP8_COMMON *pc = &pbi->common; in vp8mt_decode_macroblock() local [all …]
|
/external/libpcap/bpf/net/ |
D | bpf_filter.c | 202 bpf_filter(pc, p, wirelen, buflen) in bpf_filter() argument 203 register struct bpf_insn *pc; in bpf_filter() 223 if (pc == 0) 230 --pc; 232 ++pc; 233 switch (pc->code) { 242 return (u_int)pc->k; 248 k = pc->k; 265 k = pc->k; 282 k = pc->k; [all …]
|
/external/libpcap/ |
D | pcap-pf.c | 88 pcap_read_pf(pcap_t *pc, int cnt, pcap_handler callback, u_char *user) in pcap_read_pf() argument 101 fcode = pc->md.use_bpf ? NULL : pc->fcode.bf_insns; in pcap_read_pf() 103 cc = pc->cc; in pcap_read_pf() 105 cc = read(pc->fd, (char *)pc->buffer + pc->offset, pc->bufsize); in pcap_read_pf() 110 lseek(pc->fd, 0L, SEEK_CUR) + pc->bufsize < 0) { in pcap_read_pf() 117 (void)lseek(pc->fd, 0L, SEEK_SET); in pcap_read_pf() 120 snprintf(pc->errbuf, sizeof(pc->errbuf), "pf read: %s", in pcap_read_pf() 124 bp = pc->buffer + pc->offset; in pcap_read_pf() 126 bp = pc->bp; in pcap_read_pf() 132 pad = pc->fddipad; in pcap_read_pf() [all …]
|
/external/chromium/net/base/ |
D | cookie_monster_unittest.cc | 28 net::CookieMonster::ParsedCookie pc("a=b"); in TEST() local 29 EXPECT_TRUE(pc.IsValid()); in TEST() 30 EXPECT_FALSE(pc.IsSecure()); in TEST() 31 EXPECT_EQ("a", pc.Name()); in TEST() 32 EXPECT_EQ("b", pc.Value()); in TEST() 63 net::CookieMonster::ParsedCookie pc( in TEST() local 65 EXPECT_TRUE(pc.IsValid()); in TEST() 66 EXPECT_FALSE(pc.IsSecure()); in TEST() 67 EXPECT_TRUE(pc.IsHttpOnly()); in TEST() 68 EXPECT_TRUE(pc.HasPath()); in TEST() [all …]
|
/external/qemu/ |
D | cpu-exec.c | 108 tb = tb_gen_code(env, orig_tb->pc, orig_tb->cs_base, orig_tb->flags, in cpu_exec_nocache() 123 static TranslationBlock *tb_find_slow(target_ulong pc, in tb_find_slow() argument 136 phys_pc = get_phys_addr_code(env, pc); in tb_find_slow() 145 if (tb->pc == pc && in tb_find_slow() 151 virt_page2 = (pc & TARGET_PAGE_MASK) + in tb_find_slow() 164 tb = tb_gen_code(env, pc, cs_base, flags, 0); in tb_find_slow() 168 env->tb_jmp_cache[tb_jmp_cache_hash_func(pc)] = tb; in tb_find_slow() 175 target_ulong cs_base, pc; in tb_find_fast() local 181 cpu_get_tb_cpu_state(env, &pc, &cs_base, &flags); in tb_find_fast() 182 tb = env->tb_jmp_cache[tb_jmp_cache_hash_func(pc)]; in tb_find_fast() [all …]
|
D | disas.c | 118 print_insn_thumb1(bfd_vma pc, disassemble_info *info) in print_insn_thumb1() argument 120 return print_insn_arm(pc | 1, info); in print_insn_thumb1() 133 target_ulong pc; in target_disas() local 136 int (*print_insn)(bfd_vma pc, disassemble_info *info); in target_disas() 207 for (pc = code; size > 0; pc += count, size -= count) { in target_disas() 208 fprintf(out, "0x" TARGET_FMT_lx ": ", pc); in target_disas() 209 count = print_insn(pc, &disasm_info); in target_disas() 216 target_read_memory(pc + i, &b, 1, &disasm_info); in target_disas() 238 unsigned long pc; in disas() local 241 int (*print_insn)(bfd_vma pc, disassemble_info *info); in disas() [all …]
|
D | exec-all.h | 79 target_ulong pc, target_ulong cs_base, int flags, 83 int page_unprotect(target_ulong address, unsigned long pc, void *puc); 122 target_ulong pc; /* simulated PC corresponding to this block (EIP + CS base) */ member 173 static inline unsigned int tb_jmp_cache_hash_page(target_ulong pc) in tb_jmp_cache_hash_page() argument 176 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)); in tb_jmp_cache_hash_page() 180 static inline unsigned int tb_jmp_cache_hash_func(target_ulong pc) in tb_jmp_cache_hash_func() argument 183 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)); in tb_jmp_cache_hash_func() 188 static inline unsigned int tb_phys_hash_func(unsigned long pc) in tb_phys_hash_func() argument 190 return pc & (CODE_GEN_PHYS_HASH_SIZE - 1); in tb_phys_hash_func() 247 TranslationBlock *tb_alloc(target_ulong pc);
|
/external/bluetooth/glib/ |
D | Makefile.am | 48 glib-2.0.pc.in \ 49 gobject-2.0.pc.in \ 50 gmodule-2.0.pc.in \ 51 gmodule-export-2.0.pc.in \ 52 gmodule-no-export-2.0.pc.in \ 53 gthread-2.0.pc.in \ 54 gio-2.0.pc.in \ 55 gio-unix-2.0.pc.in \ 56 glib-2.0-uninstalled.pc.in \ 57 gobject-2.0-uninstalled.pc.in \ [all …]
|
/external/libvpx/vp8/encoder/ |
D | bitstream.c | 858 VP8_COMMON *const pc = & cpi->common; in pack_inter_mode_mvs() local 860 const MV_CONTEXT *mvc = pc->fc.mvc; in pack_inter_mode_mvs() 866 MODE_INFO *m = pc->mi, *ms; in pack_inter_mode_mvs() 867 const int mis = pc->mode_info_stride; in pack_inter_mode_mvs() 873 ms = pc->mi - 1; in pack_inter_mode_mvs() 897 if (pc->mb_no_coeff_skip) in pack_inter_mode_mvs() 919 while (++mb_row < pc->mb_rows) in pack_inter_mode_mvs() 923 while (++mb_col < pc->mb_cols) in pack_inter_mode_mvs() 934 xd->mb_to_right_edge = ((pc->mb_cols - 1 - mb_col) * 16) << 3; in pack_inter_mode_mvs() 936 xd->mb_to_bottom_edge = ((pc->mb_rows - 1 - mb_row) * 16) << 3; in pack_inter_mode_mvs() [all …]
|
/external/yaffs2/yaffs2/ |
D | yaffs_qsort.c | 81 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; in qsort() local 109 pc = pd = (char *)a + (n - 1) * es; in qsort() 111 while (pb <= pc && (r = cmp(pb, a)) <= 0) { in qsort() 119 while (pb <= pc && (r = cmp(pc, a)) >= 0) { in qsort() 122 swap(pc, pd); in qsort() 125 pc -= es; in qsort() 127 if (pb > pc) in qsort() 129 swap(pb, pc); in qsort() 132 pc -= es; in qsort() 145 r = min((long)(pd - pc), (long)(pn - pd - es)); in qsort() [all …]
|
/external/qemu/target-arm/ |
D | memcheck_arm_helpers.h | 58 if (s->pc >= 0xC0000000 || (0xB0000000 <= s->pc && s->pc <= 0xB00FFFFF)) { in watch_call_stack() 94 is_thumb_bl_or_blx(uint16_t insn, target_ulong pc, target_ulong* ret_off) in is_thumb_bl_or_blx() argument 105 insn = lduw_code(pc + 2); in is_thumb_bl_or_blx() 159 if (tb->pc == addr && tb->page_addr[0] == phys_page1) { in register_ret_address() 184 set_on_call(target_ulong pc, target_ulong ret) in set_on_call() argument 186 TCGv_ptr tmp_pc = tcg_const_ptr(pc & ~1); in set_on_call()
|
/external/v8/src/arm/ |
D | assembler-arm.cc | 123 Register pc = { 15 }; variable 205 Instr* pc = reinterpret_cast<Instr*>(pc_); in PatchCode() local 208 *(pc + i) = *(instr + i); in PatchCode() 356 const Instr kMovLrPc = al | 13*B21 | pc.code() | lr.code() * B12; 358 const Instr kLdrPCPattern = al | B26 | L | pc.code() * B16; 672 ldr(rd, MemOperand(pc, 0), cond); in addrmod1() 674 ldr(ip, MemOperand(pc, 0), cond); in addrmod1() 685 ASSERT(!rn.is(pc) && !rd.is(pc) && !x.rm_.is(pc) && !x.rs_.is(pc)); in addrmod1() 689 if (rn.is(pc) || x.rm_.is(pc)) in addrmod1() 720 ASSERT(!x.rm_.is(pc)); in addrmod2() [all …]
|
D | assembler-thumb2.cc | 103 Register pc = { 15 }; variable 185 Instr* pc = reinterpret_cast<Instr*>(pc_); in PatchCode() local 188 *(pc + i) = *(instr + i); in PatchCode() 336 const Instr kMovLrPc = al | 13*B21 | pc.code() | lr.code() * B12; 338 const Instr kLdrPCPattern = al | B26 | L | pc.code() * B16; 652 ldr(rd, MemOperand(pc, 0), cond); in addrmod1() 654 ldr(ip, MemOperand(pc, 0), cond); in addrmod1() 665 ASSERT(!rn.is(pc) && !rd.is(pc) && !x.rm_.is(pc) && !x.rs_.is(pc)); in addrmod1() 669 if (rn.is(pc) || x.rm_.is(pc)) in addrmod1() 700 ASSERT(!x.rm_.is(pc)); in addrmod2() [all …]
|
/external/oprofile/daemon/ |
D | opd_perfmon.c | 229 pfarg_reg_t pc[OP_MAX_COUNTERS]; in write_pmu() local 234 memset(pc, 0, sizeof(pc)); in write_pmu() 247 pc[i].reg_num = event->counter + 4; in write_pmu() 248 pc[i].reg_value = PMC_GEN_INTERRUPT; in write_pmu() 249 pc[i].reg_value |= PMC_PRIV_MONITOR; in write_pmu() 250 pc[i].reg_value |= PMC_MANDATORY; in write_pmu() 251 (event->user) ? (pc[i].reg_value |= PMC_USER) in write_pmu() 252 : (pc[i].reg_value &= ~PMC_USER); in write_pmu() 253 (event->kernel) ? (pc[i].reg_value |= PMC_KERNEL) in write_pmu() 254 : (pc[i].reg_value &= ~PMC_KERNEL); in write_pmu() [all …]
|
/external/strace/ |
D | util.c | 991 long pc; 993 if (upeek(tcp->pid, 4*EIP, &pc) < 0) 996 if (upeek(tcp->pid, 8*RIP, &pc) < 0) 999 if (upeek(tcp->pid, PT_B0, &pc) < 0) 1002 if (upeek(tcp->pid, 4*15, &pc) < 0) 1005 if (upeek(tcp->pid, sizeof(unsigned long)*PT_NIP, &pc) < 0) 1008 if (upeek(tcp->pid, 4*PT_PC, &pc) < 0) 1011 if (upeek(tcp->pid, REG_PC, &pc) < 0) 1014 if (upeek(tcp->pid, REG_EPC, &pc) < 0) 1020 pc = regs.r_pc; [all …]
|
/external/chromium/base/third_party/symbolize/ |
D | symbolize.cc | 262 FindSymbol(uint64_t pc, const int fd, char *out, int out_size, in FindSymbol() argument 294 start_address <= pc && pc < end_address) { in FindSymbol() 312 static bool GetSymbolFromObjectFile(const int fd, uint64_t pc, in GetSymbolFromObjectFile() argument 337 if (FindSymbol(pc, fd, out, out_size, symbol_offset, in GetSymbolFromObjectFile() 351 if (FindSymbol(pc, fd, out, out_size, symbol_offset, in GetSymbolFromObjectFile() 489 OpenObjectFileContainingPcAndGetStartAddress(uint64_t pc, in OpenObjectFileContainingPcAndGetStartAddress() argument 535 if (!(start_address <= pc && pc < end_address)) { in OpenObjectFileContainingPcAndGetStartAddress() 589 static ATTRIBUTE_NOINLINE bool SymbolizeAndDemangle(void *pc, char *out, in SymbolizeAndDemangle() argument 591 uint64_t pc0 = reinterpret_cast<uintptr_t>(pc); in SymbolizeAndDemangle() 610 pc, out, out_size, in SymbolizeAndDemangle() [all …]
|
/external/v8/tools/ |
D | tickprocessor.py | 40 def Tick(self, pc, stack): argument 84 def Tick(self, pc, stack): argument 85 super(JSCodeEntry, self).Tick(pc, stack) 86 if not pc is None: 87 offset = pc - self.start_addr 139 def Contains(self, pc): argument 140 return (self.start_offset <= pc) and (pc <= self.end_offset) 321 def IncludeTick(self, pc, sp, state): argument 324 def FindEntry(self, pc): argument 325 page = pc >> 12 [all …]
|
/external/ppp/pppd/plugins/rp-pppoe/ |
D | discovery.c | 113 struct PacketCriteria *pc = (struct PacketCriteria *) extra; in parsePADOTags() local 114 PPPoEConnection *conn = pc->conn; in parsePADOTags() 119 pc->seenACName = 1; in parsePADOTags() 125 pc->acNameOK = 1; in parsePADOTags() 129 pc->seenServiceName = 1; in parsePADOTags() 135 pc->serviceNameOK = 1; in parsePADOTags() 319 struct PacketCriteria pc; in waitForPADO() local 320 pc.conn = conn; in waitForPADO() 321 pc.acNameOK = (conn->acName) ? 0 : 1; in waitForPADO() 322 pc.serviceNameOK = (conn->serviceName) ? 0 : 1; in waitForPADO() [all …]
|
/external/libpng/ |
D | Makefile.am | 71 pkgconfig_DATA = libpng12.pc 94 CLEANFILES= pngout.png libpng12.pc libpng12-config libpng.vers \ 100 $(PNGLIB_BASENAME).pc: libpng.pc 101 cp libpng.pc $@ 129 cd $(DESTDIR)$(pkgconfigdir); rm -f libpng.pc 130 cd $(DESTDIR)$(pkgconfigdir); $(LN_S) $(PNGLIB_BASENAME).pc libpng.pc 147 rm -f $(DESTDIR)$(pkgconfigdir)/libpng.pc
|
D | config.guess | 277 echo alpha-pc-interix 350 echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` 779 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} 798 echo ${UNAME_MACHINE}-pc-cygwin 801 echo ${UNAME_MACHINE}-pc-mingw32 808 echo ${UNAME_MACHINE}-pc-pw32 813 echo i586-pc-interix${UNAME_RELEASE} 823 echo i${UNAME_MACHINE}-pc-mks 829 echo i586-pc-interix 832 echo ${UNAME_MACHINE}-pc-uwin [all …]
|
/external/e2fsprogs/lib/et/ |
D | Makefile.in | 16 all:: compile_et com_err.pc 65 com_err.pc: $(srcdir)/com_err.pc.in $(top_builddir)/config.status 67 @cd $(top_builddir); CONFIG_FILES=lib/et/com_err.pc ./config.status 83 install:: compile_et libcom_err.a $(HFILES) installdirs com_err.pc 104 @$(INSTALL_DATA) com_err.pc $(DESTDIR)$(libdir)/pkgconfig/com_err.pc 109 $(DESTDIR)$(libdir)/pkgconfig/com_err.pc 132 $(RM) -f .depend Makefile com_err.pc \
|
/external/e2fsprogs/config/ |
D | config.guess | 275 echo alpha-pc-interix 332 echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` 761 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} 778 echo ${UNAME_MACHINE}-pc-cygwin 781 echo ${UNAME_MACHINE}-pc-mingw32 784 echo ${UNAME_MACHINE}-pc-mingw32 791 echo ${UNAME_MACHINE}-pc-pw32 794 echo i586-pc-interix${UNAME_RELEASE} 800 echo i${UNAME_MACHINE}-pc-mks 806 echo i586-pc-interix [all …]
|