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

1 2 3

  /external/vixl/examples/aarch32/
abs.cc 56 uint32_t code_size = masm.GetSizeOfCodeGenerated(); local
57 ExecutableMemory memory(code, code_size);
getting-started.cc 57 uint32_t code_size = masm.GetSizeOfCodeGenerated(); local
58 ExecutableMemory memory(code, code_size);
pi.cc 95 uint32_t code_size = masm.GetSizeOfCodeGenerated(); local
96 ExecutableMemory memory(code, code_size);
mandelbrot.cc 208 uint32_t code_size = masm.GetSizeOfCodeGenerated(); local
209 ExecutableMemory memory(code, code_size);
  /external/vixl/examples/aarch64/
literal.cc 62 size_t code_size = masm.GetSizeOfCodeGenerated(); local
63 uint8_t* code = reinterpret_cast<uint8_t*>(malloc(code_size));
67 memcpy(code, masm.GetBuffer()->GetStartAddress<void*>(), code_size);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
unicodename_db.h 17258 #define code_size macro
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
unicodename_db.h 17258 #define code_size macro
    [all...]
  /external/brotli/c/dec/
state.c 159 const size_t code_size = sizeof(HuffmanCode) * ntrees * max_table_size; local
162 HuffmanCode** p = (HuffmanCode**)BROTLI_ALLOC(s, code_size + htree_size);
  /external/python/cpython2/Modules/
unicodename_db.h 17258 #define code_size macro
    [all...]
  /external/syslinux/gpxe/src/arch/i386/include/
undirom.h 37 size_t code_size; member in struct:undi_rom
  /art/compiler/debug/
method_debug_info.h 42 uint32_t code_size; member in struct:art::debug::MethodDebugInfo
  /external/mesa3d/src/amd/common/
ac_binary.h 39 unsigned code_size; member in struct:ac_shader_binary
  /external/python/cpython3/Modules/
unicodename_db.h 24632 #define code_size macro
    [all...]
  /art/compiler/
exception_test.cc 65 uint32_t code_size = 12; local
66 for (size_t i = 0 ; i < code_size; i++) {
87 OatQuickMethodHeader method_header(stack_maps_offset, 0u, 4 * sizeof(void*), 0u, 0u, code_size);
97 fake_header_code_and_maps_.data() + (fake_header_code_and_maps_.size() - code_size);
106 (fake_header_code_and_maps_.size() - code_size)));
common_compiler_test.cc 60 const uint32_t code_size = code.size(); local
74 code_size);
79 const size_t size = method_info.size() + vmap_table.size() + sizeof(method_header) + code_size;
87 const void* unaligned_code_ptr = chunk->data() + (size - code_size);
94 CHECK_EQ(code_ptr, static_cast<const void*>(chunk->data() + (chunk->size() - code_size)));
  /bionic/libc/kernel/uapi/linux/
cycx_cfm.h 61 unsigned long code_size; member in struct:cycx_fw_header
  /device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/common/
tegra_bl31_setup.c 298 unsigned long code_size = (unsigned long)(&__TEXT_END__) - code_base; local
313 code_size,
  /external/kernel-headers/original/uapi/linux/
cycx_cfm.h 100 unsigned long code_size; member in struct:cycx_fw_header
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_compiler.h 60 uint32_t code_size; /* code size in uint32 words */ member in struct:etna_shader
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
cycx_cfm.h 99 unsigned long code_size; member in struct:cycx_fw_header
  /art/runtime/
native_stack_dump.cc 281 uintptr_t code_size = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].GetCodeSize(); variable
282 return code <= pc && pc <= (code + code_size);
  /external/google-breakpad/src/processor/
basic_source_line_resolver.cc 388 uint64_t rva, code_size; local
393 code_size));
417 windows_frame_info_[type].StoreRange(rva, code_size, stack_frame_info);
  /external/mesa3d/src/amd/vulkan/
radv_pipeline_cache.c 35 uint32_t code_size; member in struct:cache_entry
83 return sizeof(*entry) + entry->code_size;
171 variant->bo = device->ws->buffer_create(device->ws, entry->code_size, 256,
175 memcpy(ptr, entry->code, entry->code_size);
259 const void *code, unsigned code_size)
275 entry = vk_alloc(&cache->alloc, sizeof(*entry) + code_size, 8,
283 memcpy(entry->code, code, code_size);
288 entry->code_size = code_size;
333 if(end - p < sizeof(*entry) + entry->code_size)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_program.h 30 unsigned code_size; member in struct:nvc0_program
  /external/pdfium/core/fxcodec/gif/
cfx_gifcontext.cpp 540 uint8_t* code_size = nullptr; local
541 if (!ReadData(&code_size, 1)) {
546 gif_image->code_exp = *code_size;

Completed in 226 milliseconds

1 2 3