Home
last modified time | relevance | path

Searched defs:p (Results 1 – 25 of 38) sorted by relevance

12

/art/runtime/base/
Dmemory_tool.h32 #define MEMORY_TOOL_MAKE_NOACCESS(p, s) __asan_poison_memory_region(p, s) argument
33 #define MEMORY_TOOL_MAKE_UNDEFINED(p, s) __asan_unpoison_memory_region(p, s) argument
34 #define MEMORY_TOOL_MAKE_DEFINED(p, s) __asan_unpoison_memory_region(p, s) argument
37 #define MEMORY_TOOL_MAKE_NOACCESS(p, s) do { (void)(p); (void)(s); } while (0) argument
38 #define MEMORY_TOOL_MAKE_UNDEFINED(p, s) do { (void)(p); (void)(s); } while (0) argument
39 #define MEMORY_TOOL_MAKE_DEFINED(p, s) do { (void)(p); (void)(s); } while (0) argument
54 #define MEMORY_TOOL_MAKE_NOACCESS(p, s) VALGRIND_MAKE_MEM_NOACCESS(p, s) argument
55 #define MEMORY_TOOL_MAKE_UNDEFINED(p, s) VALGRIND_MAKE_MEM_UNDEFINED(p, s) argument
56 #define MEMORY_TOOL_MAKE_DEFINED(p, s) VALGRIND_MAKE_MEM_DEFINED(p, s) argument
Dscoped_arena_containers.h157 void deallocate(pointer p, size_type n) { in deallocate()
163 void construct(U* p, Args&&... args) { in construct()
168 void destroy(U* p) { in destroy()
Darena_containers.h184 void deallocate(pointer p, size_type n) { in deallocate()
189 void construct(U* p, Args&&... args) { in construct()
193 void destroy(U* p) { in destroy()
Dallocator.cc37 void Free(void* p) { in Free()
Dallocator.h141 void deallocate(PT p, size_type n) { in deallocate()
/art/compiler/utils/
Dswap_space.h175 void deallocate(pointer p, size_type n) { in deallocate()
183 void construct(pointer p, const_reference val) { in construct()
187 void construct(U* p, Args&&... args) { in construct()
190 void destroy(pointer p) { in destroy()
/art/runtime/
Ddex_instruction_visitor.h35 #define INSTRUCTION_CASE(o, cname, p, f, r, i, a, v) \ in Visit() argument
53 #define INSTRUCTION_VISITOR(o, cname, p, f, r, i, a, v) \ argument
Ddex_instruction.cc39 #define INSTRUCTION_FORMAT(o, c, p, format, r, i, a, v) format, argument
47 #define INSTRUCTION_INDEX_TYPE(o, c, p, f, r, index, a, v) index, argument
55 #define INSTRUCTION_FLAGS(o, c, p, f, r, i, flags, v) flags, argument
63 #define INSTRUCTION_VERIFY_FLAGS(o, c, p, f, r, i, a, vflags) vflags, argument
71 #define INSTRUCTION_SIZE(opcode, c, p, format, r, i, a, v) \ argument
Dutf.cc99 for (const char *p = in_start; p < in_end;) { in ConvertModifiedUtf8ToUtf16() local
108 for (const char *p = in_start; p < in_end;) { in ConvertModifiedUtf8ToUtf16() local
125 for (const uint16_t *p = utf16_in; p < utf16_end;) { in ConvertUtf16ToModifiedUtf8() local
Doat_file.h229 bool Contains(const void* p) const { in Contains()
Dutils.h92 static inline uint32_t PointerToLowMemUInt32(const void* p) { in PointerToLowMemUInt32()
Dintern_table_test.cc108 TestPredicate p; in TEST_F() local
/art/runtime/gc/allocator/
Ddlmalloc.cc31 #define USAGE_ERROR_ACTION(m, p) art_heap_usage_error(__FUNCTION__, p) argument
50 static void art_heap_usage_error(const char* function, void* p) { in art_heap_usage_error()
/art/test/565-checker-condition-liveness/src/
DMain.java30 public static int p(float arg) { in p() method in Main
/art/test/137-cfi/src/
DMain.java95 Process p = exec(secCmdLine); in runPrimary() local
130 private static int getPid(Process p) { in getPid()
/art/test/146-bad-interface/src/
DMain.java30 PathClassLoader p = new PathClassLoader(DEX_FILES, Main.class.getClassLoader()); in main() local
/art/compiler/optimizing/
Dcode_generator_utils.cc53 int64_t p = is_long ? 63 : 31; in CalculateMagicAndShiftForDivRem() local
Doptimizing_unit_test.h110 for (const auto& p : diff) { in Patch() local
/art/test/071-dexfile/src/
DMain.java50 Process p = pb.start(); in main() local
/art/runtime/mirror/
Dobject_reference.h101 static CompressedReference<MirrorType> FromMirrorPtr(MirrorType* p) in FromMirrorPtr()
Dstring.cc45 const uint16_t* p = chars + start; in FastIndexOf() local
198 const char* p = modified_utf8.data(); in Equals() local
/art/runtime/gc/accounting/
Dread_barrier_table.h73 for (uint32_t* p = reinterpret_cast<uint32_t*>(mem_map_->Begin()); in IsAllCleared() local
/art/compiler/dex/quick/
Ddex_file_method_inliner.cc476 #define INTRINSIC(c, n, p, o, d) \ argument
644 #define SPECIAL(c, n, p, o, d) \ argument
/art/runtime/arch/x86/
Dthread_x86.cc33 unsigned base1: 8, type: 4, s: 1, dpl: 2, p: 1; member
/art/runtime/gc/space/
Dregion_space-inl.h304 for (size_t p = left + 1; p < right; ++p) { in AllocLarge() local

12