Home
last modified time | relevance | path

Searched refs:a (Results 326 – 350 of 1121) sorted by relevance

1...<<11121314151617181920>>...45

/art/test/552-checker-x86-avx2-bit-manipulation/src/
DMain.java215 long a = Long.MAX_VALUE; in main() local
218 assertLongEquals(0L, and_not_64(a,b)); in main()
220 assertLongEquals(-20502606L, reset_lowest_set_bit_64(a)); in main()
/art/test/952-invoke-custom/src/
DTestLinkerMethodMultipleArgumentTypes.java67 private static int add(int a, int b) { in add() argument
73 private static int _add(int a, int b) { in _add() argument
74 return a + b; in _add()
/art/test/800-smali/smali/
Dmove_exception_on_entry.smali5 # Test that we cannot have a catch-handler with move-exception at the beginning of a method.
Db_22080519.smali9 # Have a branch to reach both the aget-object and something else.
16 # This should *not* be flagged as a runtime throw
Db_20224106.smali3 # Test that a hard + soft verifier failure in invoke-interface does not lead to
11 # 1) There is a parameter type mismatch. The formal type is integral (int), but the actual
Db_22411633_4.smali12 # Note: we make sure that it is an uninitialized reference and not a conflict in sister
17 # Allocate a java.lang.Object (do not initialize).
Db_22777307.smali9 # This is a broken new-instance. It needs to throw at runtime, though. This test is here to
10 # ensure we won't produce a VerifyError.
/art/test/1959-redefine-object-instrument/
Dinfo.txt4 Redefining a class does not update the instrumentation stack of a thread.
/art/test/dexdump/
Dbytecodes.txt450 000a14: 6c00 1900 |000a: sput-char v0, Lcom/google/android/test/Test;.…
456 000a34: 6800 1d00 |001a: sput-wide v0, Lcom/google/android/test/Test;.…
460 … |0026: sput-wide v0, Lcom/google/android/test/Test;.sD:D // field@001a
500 000ab8: 1301 1f00 |000a: const/16 v1, #int 31 // #1f
507 000ad8: 5981 1100 |001a: iput v1, v8, Lcom/google/android/test/Test;.m…
520 000b18: 2341 2900 |003a: new-array v1, v4, [Z // type@0029
530 … |0050: iput-object v1, v8, Lcom/google/android/test/Test;.aShort:[S // field@000a
549 000b98: 7020 0d00 1800 |007a: invoke-direct {v8, v1}, Lcom/google/android/t…
551 … {v8, v8}, Lcom/google/android/test/Test;.add:(Ljava/lang/Object;)Ljava/lang/Object; // method@000a
645 000ca4: 150a 8040 |0000: const/high16 v10, #int 1082130432 // #4080
[all …]
/art/tools/bisection_search/
DREADME.md4 Bisection Bug Search is a tool for finding compiler optimizations bugs. It
5 accepts a program which exposes a bug by producing incorrect output and expected
6 output for the program. It then attempts to narrow down the issue to a single
27 by default. {ARGS} tag can be used to specify a custom position.
29 If used in device mode, the command has to exec a dalvikvm instance. Bisection
/art/tools/ahat/
DREADME.txt21 * Add a user guide.
26 * Have a menu at the top of an object view with links to the sections?
34 * Include a link to /objects in the overview and menu?
41 * That we can open a hprof without an 'app' heap and show a tabulation of
45 * That we can view the list of all objects in a reasonably short amount of
57 Add option for viewing subclass instances of a class.
58 Recognize java.lang.ref.Finalizer as a finalizer reference.
123 Fix page loading performance by showing a limited number of entries by default.
/art/tools/jvmti-agents/enable-vlog/
DREADME.md3 enablevlog is a JVMTI agent designed for changing the VLOG options of a
13 Use `libenablevlogs` if you wish to build a version without non-NDK dynamic
81 the LogVerbosity struct definition and the parser for a up-to-date list.
/art/test/003-omnibus-opcodes/src/
DFloatMath.java321 static boolean approxEqual(float a, float b, float maxDelta) { in approxEqual() argument
322 if (a > b) in approxEqual()
323 return (a - b) < maxDelta; in approxEqual()
325 return (b - a) < maxDelta; in approxEqual()
327 static boolean approxEqual(double a, double b, double maxDelta) { in approxEqual() argument
328 if (a > b) in approxEqual()
329 return (a - b) < maxDelta; in approxEqual()
331 return (b - a) < maxDelta; in approxEqual()
/art/libnativeloader/
DREADME.md46 `/{system|product}/lib` that a device manufacturer has newly added. The
51 is prohibited for a device manufacturer to expose an AOSP-defined private
57 loading libraries in a translated environment such as ARM-on-x86.
69 a thin wrapper around `library_namespaces.cpp` and `native_loader_namespace.cpp`.
72 is a manager-like entity that is responsible for creating and configuring
73 linker namespaces and finding an already created linker namespace for a given
77 models a linker namespace. Its main job is to abstract the two types of the
82 native libraries from the various partitions. It can be considered as a part of
/art/test/509-pre-header/smali/
DPreHeader.smali5 # You may obtain a copy of the License at
20 # that exposed the crash. The crash was due to fixing a critical
21 # edge and not preserving the invariant that the pre header of a loop
/art/test/702-LargeBranchOffset/src/
DMain.java.in6 * You may obtain a copy of the License at
34 public int foo(int a, int b) { argument
35 if ( a >= 0 ) {
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md3 breakpointlogger is a JVMTI agent that lets one set breakpoints that are logged
19 * The breakpoint\_location is a number that's a valid jlocation for the runtime
20 being used. On ART this is a dex-pc. Dex-pcs can be found using tools such as
31 * Deviating from this format or including a breakpoint that cannot be found at
/art/test/564-checker-negbitwise/src/
DMain.java279 public static int $opt$noinline$deMorganOr(int a, int b) { in $opt$noinline$deMorganOr() argument
280 return ~a | ~b; in $opt$noinline$deMorganOr()
/art/test/594-checker-irreducible-linorder/smali/
DIrreducibleLoop.smali5 # You may obtain a copy of the License at
93 # its successors. To do that, load a boolean value and compare NotEqual to 1.
99 # This constant has a use in a phi in :back_edge2 and a back edge use in
101 # a lower liveness than the phi use.
/art/dt_fd_forward/
DREADME.md3 dt_fd_forward is a jdwpTransport library. It implements the [Java Debug Wire
7 for Attach. This transport requires an address. The address is a single integer
22 When this transport accepts or attaches to a connection it will read from the
23 socket a 1 byte message and 3 file-descriptors. The file descriptors are, in
/art/benchmark/micro-native/
Dmicro_native.cc26 #define GLUE4(a, b, c, d) a ## b ## c ## d argument
27 #define GLUE4_(a, b, c, d) GLUE4(a, b, c, d) argument
/art/test/552-checker-primitive-typeprop/smali/
DSsaBuilder.smali5 # You may obtain a copy of the License at
18 # Check that a dead phi with a live equivalent is replaced in an environment. The
20 # contains a phi that is interpreted as int for the environment, and as float for
/art/tools/ahat/src/test/com/android/ahat/
DDominatorsTest.java358 Node a = new Node("a"); in twiceRevisitOldApi() local
364 a.depends = Arrays.asList(f, b); in twiceRevisitOldApi()
370 a.computeDominators(); in twiceRevisitOldApi()
371 assertEquals(a, b.dominator); in twiceRevisitOldApi()
373 assertEquals(a, c.dominator); in twiceRevisitOldApi()
374 assertEquals(a, d.dominator); in twiceRevisitOldApi()
375 assertEquals(a, f.dominator); in twiceRevisitOldApi()
/art/test/135-MirandaDispatch/smali/
Db_21646347.smali3 # If an invoke-virtual dispatches to a miranda method, ensure that we test for the receiver
4 # being a subclass of the abstract class, not postpone the check because the miranda method's
/art/tools/build/
Dvar_cache.sh166 echo "Exposes a function 'get_build_var' which returns the result of"
167 echo "a soong build variable."

1...<<11121314151617181920>>...45