Searched refs:name (Results 1 - 25 of 214) sorted by relevance

123456789

/art/runtime/arch/mips64/
H A Dasm_support_mips64.S30 // Declare a function called name, sets up $gp.
32 .macro ENTRY name
33 .type \name, %function
34 .global \name
37 \name:
41 .cpsetup $t9, $t8, \name
45 .L\name\()_gp_set:
48 // Declare a function called name, doesn't set up $gp.
49 .macro ENTRY_NO_GP name
50 .type \name,
[all...]
/art/runtime/arch/arm64/
H A Dasm_support_arm64.S39 .macro ENTRY name
40 .type \name, #function
41 .hidden \name // Hide this as a global symbol, so we do not incur plt calls.
42 .global \name
45 \name:
49 .macro END name
51 .size \name, .-\name
54 .macro UNIMPLEMENTED name
55 ENTRY \name
[all...]
/art/runtime/
H A Dos.h33 static File* OpenFileForReading(const char* name);
36 static File* OpenFileReadWrite(const char* name);
39 static File* CreateEmptyFile(const char* name);
42 static File* OpenFileWithFlags(const char* name, int flags);
45 static bool FileExists(const char* name);
48 static bool DirectoryExists(const char* name);
H A Dos_linux.cc30 File* OS::OpenFileForReading(const char* name) { argument
31 return OpenFileWithFlags(name, O_RDONLY);
34 File* OS::OpenFileReadWrite(const char* name) { argument
35 return OpenFileWithFlags(name, O_RDWR);
38 File* OS::CreateEmptyFile(const char* name) { argument
39 return OpenFileWithFlags(name, O_RDWR | O_CREAT | O_TRUNC);
42 File* OS::OpenFileWithFlags(const char* name, int flags) { argument
43 CHECK(name != nullptr);
45 if (!file->Open(name, flags, 0666)) {
51 bool OS::FileExists(const char* name) { argument
60 DirectoryExists(const char* name) argument
[all...]
/art/runtime/arch/arm/
H A Dasm_support_arm.S34 // then the labels need to be unique. We bind these to the function name in the ENTRY macros.
35 .macro RUNTIME_CURRENT name, num, rDest, rTemp
40 ldr \rDest, .Lgot_\name\()_\num @ Load offset of the GOT.
41 ldr \rTemp, .Lruntime_instance_\name\()_\num @ Load GOT offset of Runtime::instance_.
42 .Lload_got_\name\()_\num\():
51 .macro DEF_ENTRY thumb_or_arm, name
53 .type \name, #function
54 .hidden \name // Hide this as a global symbol, so we do not incur plt calls.
55 .global \name
58 \name
[all...]
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DOpcodeInfo.java28 public final String name; field in class:OpcodeInfo
35 public OpcodeInfo(Opcode opcode, String name, int opcodeValue, AbstractFormat fmt) { argument
37 this.name = name;
/art/tools/dexfuzz/src/dexfuzz/
H A DTimer.java26 * The name of the timer, the phase of the program it is intended to time.
28 private String name; field in class:Timer
42 * Initialise a new timer with the provided name.
44 public Timer(String name) { argument
45 this.name = name;
68 listener.handleTiming(name, ((float)elapsedTime) / 1000.0f);
/art/runtime/arch/x86_64/
H A Dasm_support_x86_64.S23 // Clang's as(1) doesn't let you name macro parameters prior to 3.5.
31 #define RAW_VAR(name,index) $index
32 #define VAR(name,index) SYMBOL($index)
33 #define PLT_VAR(name, index) PLT_SYMBOL($index)
34 #define REG_VAR(name,index) %$index
35 #define CALL_MACRO(name,index) $index
41 // Regular gas(1) lets you name macro parameters.
50 // will screw us by inserting a space between the \ and the name. Even in this mode there's
54 #define RAW_VAR(name,index) name
[all...]
/art/runtime/arch/mips/
H A Dasm_support_mips.S29 // Declare a function called name, sets up $gp.
30 .macro ENTRY name
31 .type \name, %function
32 .global \name
35 \name:
42 .L\name\()_gp_set:
45 // Declare a function called name, doesn't set up $gp.
46 .macro ENTRY_NO_GP name
47 .type \name, %function
48 .global \name
[all...]
/art/runtime/entrypoints/quick/
H A Dquick_entrypoints_enum.h29 #define ENTRYPOINT_ENUM(name, rettype, ...) kQuick ## name,
43 #define ENTRYPOINT_ENUM(name, rettype, ...) case kQuick ## name : \
44 return QUICK_ENTRYPOINT_OFFSET(pointer_size, p ## name);
58 #define ENTRYPOINT_ENUM(name, ...) \
59 template <> inline void CheckEntrypointTypes<kQuick ## name, __VA_ARGS__>() {}; // NOLINT [readability/braces] [4]
/art/runtime/arch/x86/
H A Dasm_support_x86.S23 // Clang's as(1) doesn't let you name macro parameters prior to 3.5.
33 #define RAW_VAR(name,index) $index
34 #define VAR(name,index) SYMBOL($index)
35 #define PLT_VAR(name, index) SYMBOL($index)
36 #define REG_VAR(name,index) %$index
37 #define CALL_MACRO(name,index) $index
43 // Regular gas(1) lets you name macro parameters.
54 // will screw us by inserting a space between the \ and the name. Even in this mode there's
58 #define RAW_VAR(name,index) name
[all...]
/art/test/083-compiler-regressions/src/
H A DZeroTests.java29 private static void longTest(String name, boolean divide) throws Exception { argument
36 throw new AssertionError(name + " failed to throw");
38 System.out.println(name + " passes");
/art/compiler/optimizing/
H A Dconstant_folding.h29 * This class is named art::HConstantFolding to avoid name
35 explicit HConstantFolding(HGraph* graph, const char* name = kConstantFoldingPassName)
36 : HOptimization(graph, true, name) {}
H A Dinstruction_simplifier.h33 const char* name = kInstructionSimplifierPassName)
34 : HOptimization(graph, true, name, stats) {}
/art/runtime/gc/space/
H A Ddlmalloc_space_base_test.cc26 MallocSpace* CreateDlMallocSpace(const std::string& name, size_t initial_size, size_t growth_limit, argument
28 return DlMallocSpace::Create(name, initial_size, growth_limit, capacity, requested_begin, false);
H A Ddlmalloc_space_random_test.cc25 MallocSpace* CreateDlMallocSpace(const std::string& name, size_t initial_size, size_t growth_limit, argument
27 return DlMallocSpace::Create(name, initial_size, growth_limit, capacity, requested_begin, false);
H A Ddlmalloc_space_static_test.cc25 MallocSpace* CreateDlMallocSpace(const std::string& name, size_t initial_size, size_t growth_limit, argument
27 return DlMallocSpace::Create(name, initial_size, growth_limit, capacity, requested_begin, false);
H A Drosalloc_space_base_test.cc23 MallocSpace* CreateRosAllocSpace(const std::string& name, size_t initial_size, size_t growth_limit, argument
25 return RosAllocSpace::Create(name, initial_size, growth_limit, capacity, requested_begin,
H A Drosalloc_space_random_test.cc23 MallocSpace* CreateRosAllocSpace(const std::string& name, size_t initial_size, size_t growth_limit, argument
25 return RosAllocSpace::Create(name, initial_size, growth_limit, capacity, requested_begin,
H A Drosalloc_space_static_test.cc23 MallocSpace* CreateRosAllocSpace(const std::string& name, size_t initial_size, size_t growth_limit, argument
25 return RosAllocSpace::Create(name, initial_size, growth_limit, capacity, requested_begin,
/art/test/068-classloader/src/
H A DFancyLoader.java63 * Finds the class with the specified binary name.
68 protected Class<?> findClass(String name) throws ClassNotFoundException argument
71 return findClassDalvik(name);
73 return findClassNonDalvik(name);
78 * Finds the class with the specified binary name, from a DEX file.
80 private Class<?> findClassDalvik(String name) argument
121 meth.invoke(mDexFile, name, this);
133 * Finds the class with the specified binary name, from .class files.
135 private Class<?> findClassNonDalvik(String name) argument
138 String pathName = CLASS_PATH + name
184 loadClass(String name, boolean resolve) argument
[all...]
/art/test/138-duplicate-classes-check/src/
H A DFancyLoader.java64 * Finds the class with the specified binary name.
69 protected Class<?> findClass(String name) throws ClassNotFoundException argument
72 return findClassDalvik(name);
74 return findClassNonDalvik(name);
79 * Finds the class with the specified binary name, from a DEX file.
81 private Class<?> findClassDalvik(String name) argument
122 meth.invoke(mDexFile, name, this);
134 * Finds the class with the specified binary name, from .class files.
136 private Class<?> findClassNonDalvik(String name) argument
139 String pathName = CLASS_PATH + name
185 loadClass(String name, boolean resolve) argument
[all...]
/art/test/138-duplicate-classes-check2/src/
H A DFancyLoader.java64 * Finds the class with the specified binary name.
69 protected Class<?> findClass(String name) throws ClassNotFoundException argument
72 return findClassDalvik(name);
74 return findClassNonDalvik(name);
79 * Finds the class with the specified binary name, from a DEX file.
81 private Class<?> findClassDalvik(String name) argument
122 meth.invoke(mDexFile, name, this);
134 * Finds the class with the specified binary name, from .class files.
136 private Class<?> findClassNonDalvik(String name) argument
139 String pathName = CLASS_PATH + name
185 loadClass(String name, boolean resolve) argument
[all...]
/art/tools/
H A Dsymbolize.sh53 FILES=$(adbshellstrip find /data -name "'*.oat'" -o -name "'*.dex'" -o -name "'*.odex'")
/art/test/005-annotations/src/android/test/anno/
H A DAnnoFancyType.java10 public String name() default "unknown";

Completed in 1768 milliseconds

123456789