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

1 2 3 4 5 6 7 8

  /external/protobuf/ruby/src/main/
sentinel.proto 3 option optimize_for = CODE_SIZE;
  /external/syslinux/gpxe/src/arch/i386/include/
undirom.h 37 size_t code_size; member in struct:undi_rom
  /external/v8/src/compiler/arm/
unwinding-info-writer-arm.h 42 void Finish(int code_size) {
43 if (enabled()) eh_frame_writer_.Finish(code_size);
  /external/v8/src/compiler/arm64/
unwinding-info-writer-arm64.h 42 void Finish(int code_size) {
43 if (enabled()) eh_frame_writer_.Finish(code_size);
  /external/v8/src/compiler/x64/
unwinding-info-writer-x64.h 46 void Finish(int code_size) {
47 if (enabled()) eh_frame_writer_.Finish(code_size);
  /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/v8/src/compiler/
unwinding-info-writer.h 44 void Finish(int code_size) {}
  /device/linaro/bootloader/edk2/OvmfPkg/
OvmfPkg.fdf.inc 28 DEFINE CODE_SIZE = 0x000E0000
40 DEFINE CODE_SIZE = 0x001E0000
  /art/compiler/jit/
jit_logger.h 97 void WriteLog(const void* ptr, size_t code_size, ArtMethod* method)
99 WritePerfMapLog(ptr, code_size, method);
100 WriteJitDumpLog(ptr, code_size, method);
111 void WritePerfMapLog(const void* ptr, size_t code_size, ArtMethod* method)
117 void WriteJitDumpLog(const void* ptr, size_t code_size, ArtMethod* method)
  /external/r8/tools/
test_framework.py 105 code_size = 0
107 code_size += os.path.getsize(dex_file)
113 .format(args.name, 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);
  /art/runtime/
oat_quick_method_header.cc 30 uint32_t code_size)
34 code_size_(code_size) {}
  /external/protobuf/src/google/protobuf/
unittest_embed_optimize_for.proto 35 // A proto file which imports a proto file that uses optimize_for = CODE_SIZE.
47 // Test that embedding a message which has optimize_for = CODE_SIZE into
unittest_optimize_for.proto 35 // A proto file which uses optimize_for = CODE_SIZE.
42 option optimize_for = CODE_SIZE;
  /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);
  /art/compiler/debug/
method_debug_info.h 39 uint32_t code_size; member in struct:art::debug::MethodDebugInfo
  /bionic/libc/kernel/uapi/linux/
cycx_cfm.h 61 unsigned long code_size; member in struct:cycx_fw_header
  /external/google-breakpad/src/processor/
source_line_resolver_base_types.h 71 Line(MemAddr addr, MemAddr code_size, int file_id, int source_line)
73 , size(code_size)
87 MemAddr code_size,
89 : name(function_name), address(function_address), size(code_size),
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_program.h 30 unsigned code_size; member in struct:nvc0_program
  /art/compiler/
exception_test.cc 58 uint32_t code_size = 12; local
59 for (size_t i = 0 ; i < code_size; i++) {
79 OatQuickMethodHeader method_header(stack_maps_offset, 0u, 4 * sizeof(void*), 0u, 0u, code_size);
89 fake_header_code_and_maps_.data() + (fake_header_code_and_maps_.size() - code_size);
98 (fake_header_code_and_maps_.size() - code_size)));
  /external/mesa3d/src/intel/vulkan/
anv_pipeline.c 482 unsigned code_size; local
485 NULL, false, -1, &code_size, NULL);
492 shader_code, code_size,
638 unsigned code_size; local
644 tcs_nir, shader_time_index, &code_size, NULL);
652 shader_code, code_size,
664 NULL, shader_time_index, &code_size, NULL);
672 shader_code, code_size,
740 unsigned code_size; local
743 NULL, -1, &code_size, NULL)
863 unsigned code_size; local
934 unsigned code_size; local
    [all...]
  /external/protobuf/java/core/src/test/proto/com/google/protobuf/
test_check_utf8_size.proto 40 option optimize_for = CODE_SIZE;
  /external/syslinux/com32/gfxboot/
gfxboot.c 166 unsigned magic_ok(unsigned char *buf, unsigned *code_size);
167 unsigned find_file(unsigned char *buf, unsigned len, unsigned *gfx_file_start, unsigned *file_len, unsigned *code_size);
478 unsigned magic_ok(unsigned char *buf, unsigned *code_size)
484 *code_size = *(unsigned *) (buf + 12);
495 unsigned find_file(unsigned char *buf, unsigned len, unsigned *gfx_file_start, unsigned *file_len, unsigned *code_size)
500 *code_size = 0;
502 if((code_start = magic_ok(buf, code_size))) return code_start;
510 if((code_start = magic_ok(buf + i, code_size))) {
536 unsigned code_start, code_size, file_start, file_len, u; local
555 if(!(code_start = find_file(archive, archive_size, &file_start, &file_len, &code_size))) {
    [all...]

Completed in 334 milliseconds

1 2 3 4 5 6 7 8