HomeSort by relevance Sort by last modified time
    Searched refs:memory (Results 1 - 25 of 1566) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
default03.fail.cpp 10 // <memory>
18 #include <memory>
pointer03.fail.cpp 10 // <memory>
18 #include <memory>
default02.fail.cpp 10 // <memory>
18 #include <memory>
pointer02.fail.cpp 10 // <memory>
16 #include <memory>
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
default03.fail.cpp 10 // <memory>
16 #include <memory>
pointer03.fail.cpp 10 // <memory>
16 #include <memory>
default02.fail.cpp 10 // <memory>
16 #include <memory>
pointer02.fail.cpp 10 // <memory>
16 #include <memory>
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Console.idl 33 readonly attribute MemoryInfo memory;
  /external/chromium_org/third_party/webrtc/base/
byteorder.h 26 // Reading and writing of little and big-endian numbers from memory
30 inline void Set8(void* memory, size_t offset, uint8 v) {
31 static_cast<uint8*>(memory)[offset] = v;
34 inline uint8 Get8(const void* memory, size_t offset) {
35 return static_cast<const uint8*>(memory)[offset];
38 inline void SetBE16(void* memory, uint16 v) {
39 Set8(memory, 0, static_cast<uint8>(v >> 8));
40 Set8(memory, 1, static_cast<uint8>(v >> 0));
43 inline void SetBE32(void* memory, uint32 v) {
44 Set8(memory, 0, static_cast<uint8>(v >> 24))
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
memoize.py 8 memory = {}
11 if full_args not in memory:
12 memory[full_args] = fn(*args, **optargs)
13 return memory[full_args]
  /external/libcxx/test/utilities/memory/allocator.tag/
allocator_arg.pass.cpp 10 // <memory>
15 #include <memory>
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.create/
make_unique.array2.fail.cpp 10 #include <memory>
make_unique.array3.fail.cpp 10 #include <memory>
make_unique.array4.fail.cpp 10 #include <memory>
make_unique.array1.fail.cpp 10 #include <memory>
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
dereference.fail.cpp 10 // <memory>
16 #include <memory>
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.observers/
dereference.pass.cpp 10 // <memory>
16 #include <memory>
  /external/libcxx/test/utilities/memory/
version.pass.cpp 10 // <memory>
12 #include <memory>
  /external/cmockery/cmockery_0_1_2/src/example/
allocate_module.c 35 char * const memory = (char*)malloc(sizeof(int)); local
36 memory[sizeof(int)] = '!';
37 free(memory);
41 char * const memory = (char*)malloc(sizeof(int)); local
42 memory[-1] = '!';
43 free(memory);
  /external/chromium_org/tools/android/memconsumer/
memconsumer_hook.cc 14 jlong memory);
33 jlong memory) {
37 if (memory == 0) {
41 g_memory = static_cast<uint32_t*>(malloc(memory));
46 memory);
48 // If memory allocation failed, try to allocate as much as possible.
50 memory /= 2;
51 g_memory = static_cast<uint32_t*>(malloc(memory));
53 for (int i = 0; i < memory / sizeof(uint32_t); ++i)
  /external/libcxx/test/utilities/memory/pointer.traits/
element_type.pass.cpp 10 // <memory>
19 #include <memory>
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/
void.fail.cpp 10 // <memory>
16 #include <memory>
  /external/libcxx/test/utilities/memory/util.dynamic.safety/
declare_no_pointers.pass.cpp 10 // <memory>
15 #include <memory>
  /external/chromium_org/third_party/freetype/src/base/
ftsystem.c 21 /* low-level, i.e. memory management, i/o access as well as thread */
39 /* MEMORY MANAGEMENT INTERFACE */
58 /* The memory allocation function. */
61 /* memory :: A pointer to the memory object. */
69 ft_alloc( FT_Memory memory,
72 FT_UNUSED( memory );
84 /* The memory reallocation function. */
87 /* memory :: A pointer to the memory object. *
289 FT_Memory memory; local
    [all...]

Completed in 867 milliseconds

1 2 3 4 5 6 7 8 91011>>