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

  /art/runtime/
gc_map.h 78 static uint32_t Hash(uint32_t native_offset) {
79 uint32_t hash = native_offset;
  /art/compiler/dex/quick/
codegen_util.cc 577 void AddEntry(uint32_t native_offset, const uint8_t* references) {
578 size_t table_index = TableIndex(native_offset);
583 SetNativeOffset(table_index, native_offset);
584 DCHECK_EQ(native_offset, GetNativeOffset(table_index));
589 size_t TableIndex(uint32_t native_offset) {
590 return NativePcOffsetToReferenceMap::Hash(native_offset) % entries_;
594 uint32_t native_offset = 0; local
597 native_offset |= (*table_)[table_offset + i] << (i * 8);
599 return native_offset;
602 void SetNativeOffset(size_t table_index, uint32_t native_offset) {
634 uint32_t native_offset = mapping_table[i + 0]; local
648 uint32_t native_offset = mapping_table[i + 0]; local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 642 native_offset(mNativePath, dx, dy, dstNative); method
653 native_offset(mNativePath, dx, dy); method
745 private static native void native_offset(int nPath, float dx, float dy, int dst_path); method in class:Path
746 private static native void native_offset(int nPath, float dx, float dy); method in class:Path
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 424 /*package*/ static void native_offset(int nPath, float dx, float dy, int dst_path) { method in class:Path_Delegate
437 /*package*/ static void native_offset(int nPath, float dx, float dy) { method in class:Path_Delegate
438 native_offset(nPath, dx, dy, 0); method

Completed in 1180 milliseconds