HomeSort by relevance Sort by last modified time
    Searched refs:LoadAt (Results 1 - 6 of 6) sorted by null

  /art/runtime/
stack_map.cc 53 static uint32_t LoadAt(MemoryRegion region,
106 return LoadAt(region_, info.NumberOfBytesForDexPc(), info.ComputeStackMapDexPcOffset());
114 return LoadAt(region_, info.NumberOfBytesForNativePc(), info.ComputeStackMapNativePcOffset());
122 return LoadAt(region_,
137 return LoadAt(region_,
152 return LoadAt(region_,
  /ndk/sources/android/crazy_linker/src/
crazy_linker_elf_loader.h 42 bool LoadAt(const char* lib_path,
47 // Only call the following functions after a succesfull LoadAt() call.
76 // Individual steps used by ::LoadAt()
crazy_linker_elf_loader.cpp 45 bool ElfLoader::LoadAt(const char* lib_path,
crazy_linker_shared_library.cpp 182 if (!loader.LoadAt(full_path_, file_offset, load_address, error)) {
  /packages/apps/Camera2/jni/
jpegutil.h 114 * @param row_length the length of the rows returned via LoadAt(). If this is
126 * The returned pointers are valid until the next call to LoadAt().
128 inline const std::array<unsigned char*, ROWS> LoadAt(int y_base);
181 const std::array<unsigned char*, ROWS> jpegutil::RowIterator<ROWS>::LoadAt(
jpegutil.cpp 273 std::array<unsigned char*, 16> yData = y_row_generator.LoadAt(y);
274 std::array<unsigned char*, 8> cbData = cb_row_generator.LoadAt(y / 2);
275 std::array<unsigned char*, 8> crData = cr_row_generator.LoadAt(y / 2);

Completed in 220 milliseconds