/aosp12/art/test/1922-owned-monitors-info/ |
H A D | expected-stdout.txt | 344 …monitors: [{ depth: 2, monitor: "NamedLock("Lock 2")" }, { depth: 2, monitor: "Target("Current thr… 354 …monitors: [{ depth: 2, monitor: "NamedLock("Lock 2")" }, { depth: 2, monitor: "Target("Current thr… 356 …depth: -1, monitor: "NamedLock("Lock 3")" }, { depth: 4, monitor: "NamedLock("Lock 2")" }, { depth… 358 …monitors: [{ depth: 4, monitor: "NamedLock("Lock 2")" }, { depth: 4, monitor: "Target("Current thr… 360 …depth: 2, monitor: "class art.Test1922$Target" }, { depth: 4, monitor: "NamedLock("Lock 2")" }, { … 362 …monitors: [{ depth: 2, monitor: "Target("Current thread test: owned-stack-depth")" }, { depth: 4, … 370 …monitors: [{ depth: -1, monitor: "NamedLock("Lock 3")" }, { depth: 2, monitor: "Target("Current th… 386 …depth: -1, monitor: "NamedLock("Lock 3")" }, { depth: 4, monitor: "NamedLock("Lock 2")" }, { depth… 394 …depth: -1, monitor: "NamedLock("Lock 3")" }, { depth: 6, monitor: "NamedLock("Lock 2")" }, { depth… 396 …depth: -1, monitor: "NamedLock("Lock 3")" }, { depth: 6, monitor: "NamedLock("Lock 2")" }, { depth… [all …]
|
/aosp12/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
H A D | layer_info_fast.rsh | 6 // Front and back depth values of this layer. 24 static inline int ValidDepth(int depth) { return (depth != 0); } 26 static inline int NotInFrontOfTheLayer(int depth, 28 return (depth <= layer_info_f2.s0); 32 //return (layer_info->back_depth <= depth && depth <= layer_info->front_depth); 33 return (layer_info_i2.s1 <= depth && depth <= layer_info_i2.s0); 37 int depth, const int2 layer_info_f2) { 38 //return (depth != 0) & (depth <= layer_info->front_depth); 39 return (depth != 0) & (depth <= layer_info_f2.s0); 44 return (depth != 0) & [all …]
|
H A D | layer_info.rsh | 6 // Front and back depth values of this layer. 24 static inline int ValidDepth(int depth) { return (depth != 0); } 26 static inline int NotInFrontOfTheLayer(int depth, 28 return (depth <= layer_info->front_depth); 31 static inline int OnTheLayer(int depth, const LayerInfo_t *layer_info) { 32 return (layer_info->back_depth <= depth && depth <= layer_info->front_depth); 36 int depth, const LayerInfo_t *layer_info) { 37 return (depth != 0) & (depth <= layer_info->front_depth); 40 static inline int ValidDepthNotOnTheLayer(int depth, 42 return (depth != 0) & [all …]
|
H A D | BlurStack.java | 88 public float getDiskRadius(int depth) { in getDiskRadius() argument 89 return diskRadiusArray[depth - MIN_DEPTH]; in getDiskRadius() 245 for (int depth = MIN_DEPTH; depth <= MAX_DEPTH; ++depth) { in computeDiskRadius() 247 depthTransform.reconstruct(stackDepthToOpenglDepth(depth)); in computeDiskRadius() 254 diskRadiusArray[depth - MIN_DEPTH] = Math.min(radius, MAX_DISC_RADIUS); in computeDiskRadius() 276 for (int depth = MAX_DEPTH; depth > frontFocalDepth; --depth, ++layer) { in generateOneLayerForEachDepth() 277 layerInfo[layer] = new LayerInfo(depth); in generateOneLayerForEachDepth() 286 for (int depth = backFocalDepth - 1; depth >= MIN_DEPTH; --depth, ++layer) { in generateOneLayerForEachDepth() 287 layerInfo[layer] = new LayerInfo(depth); in generateOneLayerForEachDepth()
|
/aosp12/art/test/1911-get-local-var-table/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1912-get-set-local-primitive/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1913-get-set-local-objects/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1914-get-local-instance/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1915-get-set-local-current-thread/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1916-get-set-current-frame/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1923-frame-pop/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1924-frame-pop-toggle/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1925-self-frame-pop/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1926-missed-frame-pop/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1935-get-set-current-frame-jit/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1939-proxy-frames/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1965-get-set-local-primitive-no-tables/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1966-get-set-local-objects-no-table/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/1967-get-set-local-bad-slot/src/art/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/art/test/jvmti-common/ |
H A D | Locals.java | 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot); in GetLocalVariableInt() argument 98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot); in GetLocalVariableLong() argument 99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot); in GetLocalVariableFloat() argument 100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot); in GetLocalVariableDouble() argument 101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot); in GetLocalVariableObject() argument 102 public static native Object GetLocalInstance(Thread thr, int depth); in GetLocalInstance() argument 104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument 105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt() 108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong() 111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat() [all …]
|
/aosp12/packages/modules/StatsD/statsd/src/ |
H A D | FieldValue.h | 90 mField = getEncodedField(pos, depth, true); in Field() 106 inline void decorateLastPos(int32_t depth) { in decorateLastPos() 119 inline int32_t getPath(int32_t depth) const { in getPath() 120 if (depth > 2 || depth < 0) return 0; in getPath() 127 inline int32_t getPrefix(int32_t depth) const { in getPrefix() 128 if (depth == 0) return 0; in getPrefix() 129 return getPath(depth - 1); in getPrefix() 138 int32_t shift = 8 * (kMaxLogDepth - depth); in getRawPosAtDepth() 149 inline bool isLastPos(int32_t depth) const { in isLastPos() 157 return getDepth() >= depth && getRawPosAtDepth(depth) == 0; in isAnyPosMatcher() [all …]
|
H A D | FieldValue.cpp | 35 field |= (depth << 24); in getEncodedField() 62 if (depth > kMaxLogDepth) { in translateFieldMatcher() 68 mask[depth] = 0x7f; in translateFieldMatcher() 71 depth++; in translateFieldMatcher() 72 if (depth > 2) { in translateFieldMatcher() 81 pos[depth] = 0; in translateFieldMatcher() 82 mask[depth] = 0; in translateFieldMatcher() 85 pos[depth] = 1; in translateFieldMatcher() 93 pos[depth] = 0; in translateFieldMatcher() 94 mask[depth] = 0; in translateFieldMatcher() [all …]
|
/aosp12/art/test/ti-agent/ |
H A D | locals_helper.cc | 49 jint depth, in Java_art_Locals_SetLocalVariableObject() argument 58 jint depth, in Java_art_Locals_SetLocalVariableDouble() argument 67 jint depth, in Java_art_Locals_SetLocalVariableFloat() argument 76 jint depth, in Java_art_Locals_SetLocalVariableLong() argument 85 jint depth, in Java_art_Locals_SetLocalVariableInt() argument 94 jint depth, in Java_art_Locals_GetLocalVariableDouble() argument 104 jint depth, in Java_art_Locals_GetLocalVariableFloat() argument 114 jint depth, in Java_art_Locals_GetLocalVariableLong() argument 124 jint depth, in Java_art_Locals_GetLocalVariableInt() argument 134 jint depth) { in Java_art_Locals_GetLocalInstance() argument [all …]
|
/aosp12/art/test/913-heaps/ |
H A D | expected-stdout.txt | 3 root@root --(jni-local[id=1,tag=3000,depth=0,method=followReferences])--> 3000@0 [size=124, length=… 5 root@root --(stack-local[id=1,tag=3000,depth=5,method=run,vreg=2,location= 0])--> 3000@0 [size=124,… 46 root@root --(jni-local[id=1,tag=3000,depth=0,method=followReferences])--> 1@1000 [size=16, length=-… 47 root@root --(jni-local[id=1,tag=3000,depth=0,method=followReferences])--> 3000@0 [size=124, length=… 100 root@root --(jni-local[id=1,tag=3000,depth=0,method=followReferences])--> 3000@0 [size=124, length=… 111 root@root --(jni-local[id=1,tag=3000,depth=0,method=followReferences])--> 1@1000 [size=16, length=-… 112 root@root --(jni-local[id=1,tag=3000,depth=0,method=followReferences])--> 3000@0 [size=124, length=… 174 root@root --(jni-local[id=1,tag=3000,depth=0,method=followReferences])--> 1@1000 [size=16, length=-… 198 root@root --(jni-local[id=1,tag=3000,depth=0,method=followReferences])--> 3000@0 [size=124, length=… 242 root@root --(jni-local[id=1,tag=3000,depth=0,method=followReferences])--> 1@1000 [size=16, length=-… [all …]
|
/aosp12/art/test/1987-structural-redefine-recursive-stack-scope/ |
H A D | expected-stdout.txt | 3 Result at depth 0: THIS IS A FOO VALUE 4 Result at depth 1: THIS IS A FOO VALUE 5 Result at depth 2: THIS IS A FOO VALUE 6 Result at depth 3: THIS IS A FOO VALUE 7 Result at depth 4: THIS IS A FOO VALUE 8 Result at depth 5: THIS IS A FOO VALUE 9 Result at depth 6: THIS IS A FOO VALUE 10 Result at depth 7: THIS IS A FOO VALUE 11 Result at depth 8: THIS IS A FOO VALUE 12 Result at depth 9: THIS IS A FOO VALUE
|