Searched refs:pfn (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/tools/deep_memory_profiler/lib/
H A Dpageframe.py16 def __init__(self, pfn, size, pagecount, start_truncated, end_truncated):
17 self._pfn = pfn
55 pfn = struct.unpack(
58 return PageFrame(pfn, size, pagecount, start_truncated, end_truncated)
61 def pfn(self): member in class:PageFrame
131 for pfn, count in self._pfnset.iteritems():
132 yield pfn, count
145 prev_pfn_end_truncated != page_frame.pfn):
147 self._pfnset[page_frame.pfn] = self._pfnset.get(page_frame.pfn,
[all...]
H A Dpolicy.py338 elif pageframe.pagecount <= group_pfn_counts.get(pageframe.pfn, 0) + 1:
343 if pageframe.pfn in group_pfn_counts:
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoice_engine_impl.cc41 PfnGetVoiceEngine pfn = (PfnGetVoiceEngine)GetProcAddress( local
43 if (pfn) {
44 VoiceEngine* self = pfn();
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3nametest.c397 const struct set_name_fn *pfn = name_fns; local
398 while (pfn->name) {
408 if (!pfn->fn(crt, *pname))
413 run_cert(crt, *pname, pfn);
417 ++pfn;
/external/srec/portable/src/
H A Dpstream.c172 char *pfn; local
206 if ((pfn = strrchr(filename, '/')) != NULL || (pfn = strrchr(filename, '\\')) != NULL)
207 strcpy(fname, pfn + 1);
265 pfn = pCurRec->name;
304 PortFile->filename = pfn;
/external/clang/test/SemaCXX/
H A Dconditional-expr.cpp153 vfn pfn = i1 ? F() : test; local
154 pfn = i1 ? test : F();
171 pfn = i1 ? F() : G();
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Ddeep-heap-profile.h212 uint64 pfn; member in struct:DeepHeapProfile::MemoryInfoGetterLinux::State
220 uint64 ReadPageCount(uint64 pfn) const;
H A Ddeep-heap-profile.cc165 buffer != NULL && state.pfn != 0) {
173 buffer->AppendBase64(state.pfn, 4);
176 uint64 pagecount = ReadPageCount(state.pfn);
223 uint64 DeepHeapProfile::MemoryInfoGetterLinux::ReadPageCount(uint64 pfn) const {
224 int64 index = pfn * KPAGECOUNT_BYTES;
270 state->pfn = (pagemap_value & PFN_FILTER);
272 state->pfn = 0;
/external/chromium_org/tools/deep_memory_profiler/subcommands/
H A Dpolicies.py96 for pfn, count in pfnset_list[closest_pfnset_index].iter_pfn:
97 all_pfn_dict[pfn] = all_pfn_dict.get(pfn, 0) + count
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp698 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false); local
699 if (pfn)
700 return pfn;
702 pfn = MasterHelper->getPointerToNamedFunction(Name);
703 if (!pfn && AbortOnFailure)
706 return pfn;
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy.cpp701 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false); local
702 if (pfn)
703 return pfn;
705 pfn = MasterHelper->getPointerToNamedFunction(Name);
706 if (!pfn && AbortOnFailure)
709 return pfn;
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp790 void *pfn = SectionMemoryManager::getPointerToNamedFunction(Name, false); local
791 if (pfn)
792 return pfn;
794 pfn = MasterHelper->getPointerToNamedFunction(Name);
795 if (!pfn && AbortOnFailure)
798 return pfn;
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp953 void *pfn = RTDyldMemoryManager::getPointerToNamedFunction(Name, false); local
954 if (pfn)
955 return pfn;
957 pfn = MasterHelper->getPointerToNamedFunction(Name);
958 if (!pfn && AbortOnFailure)
961 return pfn;
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_file.cc429 void (GeneratorClass::*pfn)(io::Printer* printer)) {
449 (generator.*pfn)(&printer);
/external/chromium_org/third_party/sqlite/src/src/
H A Dos_os2.c1697 PFN pfn; local
1699 rc = DosQueryProcAddr((HMODULE)pHandle, 0L, (PSZ)zSymbol, &pfn);
1706 rc = DosQueryProcAddr((HMODULE)pHandle, 0L, (PSZ)_zSymbol, &pfn);
1708 return rc != NO_ERROR ? 0 : (void(*)(void))pfn;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c23709 PFN pfn; local
23711 rc = DosQueryProcAddr((HMODULE)pHandle, 0L, (PSZ)zSymbol, &pfn);
23718 rc = DosQueryProcAddr((HMODULE)pHandle, 0L, (PSZ)_zSymbol, &pfn);
23720 return rc != NO_ERROR ? 0 : (void(*)(void))pfn;
[all...]

Completed in 2484 milliseconds