HomeSort by relevance Sort by last modified time
    Searched defs:header_offset (Results 1 - 16 of 16) sorted by null

  /external/sfntly/cpp/src/sfntly/table/
table.h 79 virtual int32_t header_offset() { return header_->offset(); } function in class:sfntly::Table
  /external/google-breakpad/src/common/mac/
macho_id.cc 267 off_t header_offset; local
269 if (!walker->CurrentHeader(&header, &header_offset))
286 macho_id->Update(walker, header_offset + sec.offset, sec.size);
300 off_t header_offset; local
302 if (!walker->CurrentHeader(&header, &header_offset))
320 header_offset + sec64.offset,
  /external/libcxxabi/src/
cxa_exception.cpp 190 size_t header_offset = get_cxa_exception_offset(); local
192 (char *)__aligned_malloc_with_fallback(header_offset + actual_size);
196 static_cast<__cxa_exception *>((void *)(raw_buffer + header_offset));
205 size_t header_offset = get_cxa_exception_offset(); local
207 ((char *)cxa_exception_from_thrown_object(thrown_object)) - header_offset;
  /external/v8/src/compiler/
bytecode-analysis.h 113 // Get the loop info of the loop header at {header_offset}.
114 const LoopInfo& GetLoopInfoFor(int header_offset) const;
136 int header_offset; member in struct:v8::internal::compiler::BASE_EMBEDDED::LoopStackEntry
bytecode-analysis.cc 368 if (current_offset == current_loop.header_offset) {
433 DCHECK_EQ(loop_stack_.top().header_offset, -1);
469 int header_offset = iterator.GetJumpTargetOffset(); local
473 liveness_map_.GetLiveness(header_offset);
485 for (; iterator.current_offset() > header_offset; --iterator) {
545 DCHECK(loop_stack_.top().header_offset < loop_header);
549 int parent_offset = loop_stack_.top().header_offset;
598 const LoopInfo& BytecodeAnalysis::GetLoopInfoFor(int header_offset) const {
599 DCHECK(IsLoopHeader(header_offset));
601 return header_to_info_.find(header_offset)->second
    [all...]
  /external/pdfium/core/fxcodec/lbmp/
fx_bmp.h 86 uint32_t header_offset; member in class:BMPDecompressor
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zipimport.c 691 long header_offset, name_size, header_size, header_position; local
734 header_offset = get_long((unsigned char *)endof_central_dir + 16);
735 arc_offset = header_position - header_offset - header_size;
736 header_offset += arc_offset;
751 if (fseek(fp, header_offset, 0) == -1) /* Start of file header */
756 if (fseek(fp, header_offset + 10, 0) == -1)
768 if (fseek(fp, header_offset + 42, 0) == -1)
782 header_offset += header_size;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zipimport.c 691 long header_offset, name_size, header_size, header_position; local
729 header_offset = get_long((unsigned char *)endof_central_dir + 16);
730 arc_offset = header_position - header_offset - header_size;
731 header_offset += arc_offset;
746 fseek(fp, header_offset, 0); /* Start of file header */
750 fseek(fp, header_offset + 10, 0);
761 fseek(fp, header_offset + 42, 0);
774 header_offset += header_size;
    [all...]
  /external/libchrome/mojo/core/
user_message_impl.cc 492 size_t header_offset = local
501 header_offset;
  /external/pdfium/core/fpdfapi/parser/
cpdf_data_avail.cpp 507 const int32_t header_offset = GetHeaderOffset(GetValidator()); local
511 if (header_offset == kInvalidHeaderOffset)
514 m_parser.m_pSyntax->InitParserWithValidator(GetValidator(), header_offset);
cpdf_parser.cpp 204 const int32_t header_offset = GetHeaderOffset(file_access); local
205 if (header_offset == kInvalidHeaderOffset)
207 if (file_access->GetSize() < header_offset + kPDFHeaderSize)
210 m_pSyntax->InitParser(file_access, header_offset);
    [all...]
  /external/python/cpython2/Modules/
zipimport.c 711 unsigned int crc, data_size, file_size, header_size, header_offset; local
753 header_offset = get_uint32(buffer + 16);
758 if (header_position < header_offset) {
762 if (header_position - header_size < header_offset) {
767 arc_offset = header_position - header_offset;
810 if (file_offset > header_offset) {
    [all...]
  /art/dex2oat/linker/arm/
relative_patcher_thumb2_test.cc 195 uint32_t header_offset = thunk_end + CodeAlignmentSize(thunk_end); local
197 header_offset + sizeof(OatQuickMethodHeader) + 1 /* thumb mode */);
    [all...]
  /external/python/cpython3/Modules/
zipimport.c 950 unsigned int crc, data_size, file_size, header_size, header_offset; local
989 header_offset = get_uint32(buffer + 16);
994 if (header_position < header_offset) {
998 if (header_position - header_size < header_offset) {
1003 arc_offset = header_position - header_offset;
1043 if (file_offset > header_offset) {
    [all...]
  /art/dex2oat/linker/arm64/
relative_patcher_arm64_test.cc 162 uint32_t header_offset = thunk_end + CodeAlignmentSize(thunk_end); local
163 CHECK_EQ(last_result.second, header_offset + sizeof(OatQuickMethodHeader));
    [all...]
  /external/perf_data_converter/src/quipper/
perf_reader.cc 1456 const size_t header_offset = header.data.offset + header.data.size; local
    [all...]

Completed in 5446 milliseconds