HomeSort by relevance Sort by last modified time
    Searched defs:memory (Results 351 - 375 of 501) sorted by null

<<11121314151617181920>>

  /external/freetype/include/freetype/internal/
psaux.h 89 FT_Memory memory );
113 /* a single memory block. */
116 /* block :: The address in memory of the growheap's block. This */
136 /* memory :: The object used for memory operations */
143 FT_Byte* block; /* current memory block */
144 FT_Offset cursor; /* current cursor in memory block */
145 FT_Offset capacity; /* current size of memory block */
153 FT_Memory memory; member in struct:PS_TableRec_
369 FT_Memory memory );
455 FT_Memory memory; member in struct:PS_ParserRec_
534 FT_Memory memory; member in struct:PS_Builder_
782 FT_Memory memory; member in struct:T1_BuilderRec_
1045 FT_Memory memory; member in struct:CFF_Builder_
1235 FT_Memory memory; member in struct:AFM_ParserRec_
    [all...]
tttypes.h 1601 FT_Memory memory; member in struct:TT_GlyphZoneRec_
    [all...]
  /external/freetype/src/raster/
ftraster.c 550 void* memory; member in struct:black_TRaster_
3108 FT_Memory memory = (FT_Memory)raster->memory; local
    [all...]
  /external/freetype/src/truetype/
ttinterp.c 225 /* memory :: A handle to the parent memory object. */
233 FT_Memory memory = exec->memory; local
269 /* memory :: A handle to the parent memory object. */
279 FT_Memory memory )
286 exec->memory = memory;
309 FT_ERROR(( "Init_Context: not enough memory for %p\n", exec ))
585 FT_Memory memory; local
    [all...]
  /external/pcre/dist2/src/sljit/
sljitLir.h 55 (including memory allocators). See sljitConfig.h
66 - SLJIT supports complex memory addressing modes
93 /* Cannot allocate non executable memory. */
95 /* Cannot allocate executable memory.
170 and cannot be used for memory addressing (cannot be part of
190 and cannot be used for memory addressing (cannot be part of
274 sljit_u8 memory[1]; member in struct:sljit_memory_fragment
414 custom memory managers. This pointer is passed to SLJIT_MALLOC
441 Allocate a small amount of memory. The size must be <= 64 bytes on 32 bit,
442 and <= 128 bytes on 64 bit architectures. The memory area is owned by th
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
executor.cc 20 #include <memory>
82 string memory; local
83 for (auto& all : stats->stats()->memory()) {
88 memory =
89 strings::StrCat(memory, "[", all.allocator_name(),
93 memory = strings::StrCat(memory, "[", all.allocator_name(),
105 text = strings::StrCat(memory, node->name(), " = ", node->type_string(),
113 text = strings::StrCat(memory, node->name(), " = ", node->type_string(),
118 strings::StrCat(memory, node->name(), " = ", node->type_string(), "("
    [all...]
  /external/v8/src/wasm/
wasm-module.cc 5 #include <memory>
57 void* memory = buffer->backing_store(); local
58 DCHECK(memory != nullptr);
59 base::OS::Free(memory,
104 // addressable memory after the guard page can be made inaccessible.
110 void* memory = base::OS::AllocateGuarded(alloc_size); local
111 if (memory == nullptr) {
116 base::OS::Unprotect(memory, size);
122 return memory;
124 void* memory = isolate->array_buffer_allocator()->Allocate(size) local
774 void* memory = local
1603 auto memory = Handle<WasmMemoryObject>::cast(value); local
2545 void* memory = TryAllocateBackingStore(isolate, section.payload_length, local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
GlslangToSpv.cpp 303 // Translate glslang type to SPIR-V memory decorations.
304 void TranslateMemoryDecoration(const glslang::TQualifier& qualifier, std::vector<spv::Decoration>& memory)
307 memory.push_back(spv::DecorationCoherent);
309 memory.push_back(spv::DecorationVolatile);
311 memory.push_back(spv::DecorationRestrict);
313 memory.push_back(spv::DecorationNonWritable);
315 memory.push_back(spv::DecorationNonReadable);
2584 std::vector<spv::Decoration> memory; local
5467 std::vector<spv::Decoration> memory; local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
core_validation_types.h 149 // Generic memory binding struct to track objects bound to objects
170 bool sparse; // Is this object being bound with sparse memory or not?
212 bool valid; // If this is a swapchain image backing memory track valid here as it doesn't have DEVICE_MEM_INFO
242 VkDeviceMemory memory; member in struct:MEMORY_RANGE
250 // Data struct for tracking memory object
252 void *object; // Dispatchable object used to create this memory (device of swapchain)
256 std::unordered_set<VK_OBJECT> obj_bindings; // objects bound to this memory
267 void *p_driver_data; // Pointer to application's actual memory
  /prebuilts/jdk/jdk8/darwin-x86/lib/
sa-jdi.jar 
  /prebuilts/jdk/jdk8/linux-x86/lib/
sa-jdi.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.0.CR3/
netty-buffer-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.3.Final/
netty-buffer-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-buffer/4.1.6.Final/
netty-buffer-4.1.6.Final.jar 
  /art/runtime/
thread.cc 122 // For implicit overflow checks we reserve an extra piece of memory at the bottom
123 // of the stack (lowest memory). The higher portion of the memory
304 uint8_t* memory = new uint8_t[sizeof(FrameIdToShadowFrame) + sizeof(bool) * num_vregs]; local
305 return new (memory) FrameIdToShadowFrame(frame_id, shadow_frame, next);
309 uint8_t* memory = reinterpret_cast<uint8_t*>(f); local
310 delete[] memory;
550 // NB. madvise will probably write zeroes into the memory (on linux it does).
558 // to prevent memory being allocated when it's not needed. This flag makes the
559 // kernel only allocate memory for the stack by growing down in memory. Because w
    [all...]
  /cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
VulkanDeviceInfo.java 209 private static final String KEY_MEMORY = "memory";
576 JSONObject memory = device.getJSONObject(KEY_MEMORY); local
    [all...]
  /external/google-breakpad/src/google_breakpad/common/
minidump_format.h 244 /* The base address of the memory range on the host that produced the
248 MDLocationDescriptor memory; member in struct:__anon20844
276 * and miscellaneous info. A memory list stream is also present,
277 * pointing to the same stack memory contained in the thread list,
279 * was executing when the exception occurred. Stack memory is from
281 * memory region encompassing the stack. */
522 * memory) of another MDException, for
    [all...]
  /external/v8/src/
d8.cc 85 // In debug mode, check the memory is zero-initialized.
1346 void* memory = (counters_file_ == NULL) ? local
    [all...]
isolate.cc 2142 v8::internal::Segment* memory = AccountingAllocator::GetSegment(size); variable
    [all...]
  /external/vulkan-validation-layers/layers/
core_validation_types.h 39 #include <memory>
143 // Generic memory binding struct to track objects bound to objects
165 bool sparse; // Is this object being bound with sparse memory or not?
168 // Memory requirements for this BINDABLE
170 // bool to track if memory requirements were checked
182 // Update the cached set of memory bindings.
195 // Return unordered set of memory objects that are bound
247 bool valid; // If this is a swapchain image backing memory track valid here as it doesn't have DEVICE_MEM_INFO
307 VkDeviceMemory memory; member in struct:MEMORY_RANGE
315 // Data struct for tracking memory objec
    [all...]
  /hardware/qcom/msm8998/kernel-headers/media/
msm_cam_sensor.h 411 uint32_t memory; member in struct:msm_ois_opcode
  /hardware/qcom/msm8998/original-kernel-headers/media/
msm_cam_sensor.h 369 uint32_t memory; member in struct:msm_ois_opcode
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/build-android/generated/include/
vk_safe_struct.h 159 VkDeviceMemory memory; member in struct:safe_VkMappedMemoryRange
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_shader.c 3849 struct tgsi_full_src_register memory; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
videodev2.h 459 __u32 memory; member in struct:v4l2_requestbuffers
482 __u32 memory; member in struct:v4l2_buffer
1263 __u32 memory; member in struct:v4l2_create_buffers
    [all...]

Completed in 682 milliseconds

<<11121314151617181920>>