HomeSort by relevance Sort by last modified time
    Searched defs:ph (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/component_updater/
component_patcher_win.cc 100 // |ph| is closed by WaitForExitCode.
101 base::ProcessHandle ph = base::kNullProcessHandle; local
103 if (!base::LaunchProcess(setup_path, launch_options, &ph) ||
104 !base::WaitForExitCode(ph, &exit_code)) {
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
page_heap_test.cc 12 static void CheckStats(const tcmalloc::PageHeap* ph,
16 tcmalloc::PageHeap::Stats stats = ph->stats();
23 tcmalloc::PageHeap* ph = new tcmalloc::PageHeap(); local
26 CheckStats(ph, 0, 0, 0);
29 tcmalloc::Span* s1 = ph->New(256);
30 CheckStats(ph, 256, 0, 0);
33 tcmalloc::Span* s2 = ph->Split(s1, 128);
35 ph->Delete(s2);
36 CheckStats(ph, 256, 128, 0);
39 EXPECT_EQ(s2_len, ph->ReleaseAtLeastNPages(1))
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
page_heap_test.cc 12 static void CheckStats(const tcmalloc::PageHeap* ph,
16 tcmalloc::PageHeap::Stats stats = ph->stats();
23 tcmalloc::PageHeap* ph = new tcmalloc::PageHeap(); local
26 CheckStats(ph, 0, 0, 0);
29 tcmalloc::Span* s1 = ph->New(256);
30 CheckStats(ph, 256, 0, 0);
33 tcmalloc::Span* s2 = ph->Split(s1, 128);
35 ph->Delete(s2);
36 CheckStats(ph, 256, 128, 0);
39 EXPECT_EQ(s2_len, ph->ReleaseAtLeastNPages(1))
    [all...]
  /external/chromium-trace/trace-viewer/src/cc/
picture_view_test_data.js 12 'ph': 'O',
  /external/chromium_org/third_party/freetype/src/pshinter/
pshmod.c 55 void* ph = &module->ps_hints; local
63 module->t1_funcs.hints = (T1_Hints)ph;
66 module->t2_funcs.hints = (T2_Hints)ph;
  /external/freetype/src/pshinter/
pshmod.c 55 void* ph = &module->ps_hints; local
63 module->t1_funcs.hints = (T1_Hints)ph;
66 module->t2_funcs.hints = (T2_Hints)ph;
  /external/srec/audio/AudioIn/UNIX/src/
filter.c 232 typeCoeff const *ph; // pointer to coefficients local
242 ph = pFIR->h; // point to coefficients
265 accum += *ph++ * *pz++;
273 accum += *ph++ * *pz++;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_util.c 43 union pointer_hack ph; local
45 ph.uint64 = 0;
46 ph.pointer = unaligned;
47 ph.uint64 = (ph.uint64 + 15) & ~15;
48 return ph.pointer;
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_util.c 43 union pointer_hack ph; local
45 ph.uint64 = 0;
46 ph.pointer = unaligned;
47 ph.uint64 = (ph.uint64 + 15) & ~15;
48 return ph.pointer;
  /external/chromium_org/chrome/browser/first_run/
first_run_internal_win.cc 49 base::ProcessHandle ph; local
76 if (!base::LaunchProcess(setup_path, base::LaunchOptions(), &ph) ||
77 !base::WaitForExitCode(ph, &exit_code)) {
  /external/elfutils/libdwfl/
dwfl_report_elf.c 193 GElf_Phdr phdr_mem, *ph = gelf_getphdr (elf, i, &phdr_mem); local
194 if (unlikely (ph == NULL))
196 if (ph->p_type == PT_LOAD)
198 if ((base & (ph->p_align - 1)) != 0)
199 base = (base + ph->p_align - 1) & -ph->p_align;
200 start = base + (ph->p_vaddr & -ph->p_align);
208 GElf_Phdr phdr_mem, *ph = gelf_getphdr (elf, i, &phdr_mem); local
209 if (unlikely (ph == NULL)
    [all...]
dwfl_module_getdwarf.c 99 GElf_Phdr *ph = gelf_getphdr (file->elf, i, &ph_mem); local
100 if (ph == NULL)
102 if (ph->p_type == PT_LOAD)
104 file->bias = ((mod->low_addr & -ph->p_align)
105 - (ph->p_vaddr & -ph->p_align));
  /external/libpcap/
pcap-enet.c 55 register struct packet_header *ph; local
79 ph = (struct packet_header *)bp;
80 caplen = ph->tap.th_wirelen > snaplen ? snaplen : ph->tap
82 if (bpf_filter(fcode, (char *)ph->packet,
83 ph->tap.th_wirelen, caplen)) {
86 (*printit)((char *)ph->packet,
87 (struct timeval *)ph->tap.th_timestamp,
88 ph->tap.th_wirelen, caplen);
90 inc = ph->length.PacketOffset
    [all...]
  /external/qemu/block/
parallels.c 58 const struct parallels_header *ph = (const void *)buf; local
63 if (!memcmp(ph->magic, HEADER_MAGIC, 16) &&
64 (le32_to_cpu(ph->version) == HEADER_VERSION))
74 struct parallels_header ph; local
78 if (bdrv_pread(bs->file, 0, &ph, sizeof(ph)) != sizeof(ph))
81 if (memcmp(ph.magic, HEADER_MAGIC, 16) ||
82 (le32_to_cpu(ph.version) != HEADER_VERSION)) {
86 bs->total_sectors = le32_to_cpu(ph.nb_sectors)
    [all...]
  /external/qemu/
elf_ops.h 185 struct elf_phdr *phdr = NULL, *ph; local
227 ph = &phdr[i];
228 glue(bswap_phdr, SZ)(ph);
234 ph = &phdr[i];
235 if (ph->p_type == PT_LOAD) {
236 mem_size = ph->p_memsz;
239 if (ph->p_filesz > 0) {
240 if (lseek(fd, ph->p_offset, SEEK_SET) < 0)
242 if (read(fd, data, ph->p_filesz) != ph->p_filesz
    [all...]
charpipe.c 83 CharPipeHalf* ph = cs->opaque; local
85 while (ph->bip_first) {
86 BipBuffer* bip = ph->bip_first;
87 ph->bip_first = bip->next;
90 ph->bip_last = NULL;
91 ph->peer = NULL;
98 CharPipeHalf* ph = cs->opaque; local
99 CharPipeHalf* peer = ph->peer;
100 BipBuffer* bip = ph->bip_last;
104 len, ph, quote_bytes( buf, len ))
    [all...]
  /art/compiler/
elf_fixup.cc 210 ::llvm::ELF::Elf32_Phdr& ph = elf_file.GetProgramHeader(i); local
211 CHECK_EQ(ph.p_vaddr, ph.p_paddr) << elf_file.GetFile().GetPath() << " i=" << i;
212 CHECK((ph.p_align == 0) || (0 == ((ph.p_vaddr - ph.p_offset) & (ph.p_align - 1))))
217 ph.p_vaddr, ph.p_vaddr + base_address);
219 ph.p_vaddr += base_address
    [all...]
  /bionic/libthread_db/include/
thread_db.h 70 struct ps_prochandle *ph; member in struct:__anon766
  /development/ndk/platforms/android-9/include/
thread_db.h 72 struct ps_prochandle *ph; member in struct:__anon1528
  /external/chromium/chrome/browser/first_run/
first_run_win.cc 137 base::ProcessHandle ph; local
146 if (!base::LaunchApp(cl, false, false, &ph))
148 DWORD wr = ::WaitForSingleObject(ph, INFINITE);
151 return (TRUE == ::GetExitCodeProcess(ph, reinterpret_cast<DWORD*>(ret_code)));
  /external/svox/pico/tts/
svox_ssml_parser.cpp 168 char16_t* ph = NULL; local
182 if (strcmp(attributes[i], "ph") == 0)
184 ph = new char16_t[strlen8to16(attributes[i+1]) + 1];
185 ph = strdup8to16(attributes[i+1], &phsize);
188 if (!ph)
191 ALOGE("Error: bad SSML syntax, ph attribute not supplied.");
198 xsampasize = cnvIpaToXsampa(ph, phsize, &xsampastr);
199 delete [] ph;
208 xsampastr = strndup16to8(ph, phsize);
210 delete [] ph;
    [all...]
  /external/tcpdump/
print-dccp.c 73 } ph; member in union:phu
79 phu.ph.mbz = 0;
80 phu.ph.len = htons(len);
81 phu.ph.proto = IPPROTO_DCCP;
82 memcpy(&phu.ph.src, &ip->ip_src.s_addr, sizeof(u_int32_t));
84 memcpy(&phu.ph.dst, &ip->ip_dst.s_addr, sizeof(u_int32_t));
86 phu.ph.dst = ip_finddst(ip);
105 } ph; member in union:__anon28664
111 phu.ph.ph_src = ip6->ip6_src;
112 phu.ph.ph_dst = ip6->ip6_dst
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelBar.java 67 public void setPanelHolder(PanelHolder ph) {
68 if (ph == null) {
72 ph.setBar(this);
73 mPanelHolder = ph;
74 final int N = ph.getChildCount();
76 final View v = ph.getChildAt(i);
  /ndk/sources/android/libthread_db/gdb-7.3.x/
thread_db.h 75 struct ps_prochandle *ph; member in struct:__anon34883
  /ndk/sources/android/libthread_db/gdb-7.6/
thread_db.h 87 struct ps_prochandle *ph; member in struct:__anon34895

Completed in 767 milliseconds

1 2 3