HomeSort by relevance Sort by last modified time
    Searched refs:depth (Results 76 - 100 of 3688) sorted by null

1 2 34 5 6 7 8 91011>>

  /art/test/1913-get-set-local-objects/src/art/
Locals.java 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
102 public static native Object GetLocalInstance(Thread thr, int depth);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue())
    [all...]
  /art/test/1914-get-local-instance/src/art/
Locals.java 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
102 public static native Object GetLocalInstance(Thread thr, int depth);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue())
    [all...]
  /art/test/1915-get-set-local-current-thread/src/art/
Locals.java 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
102 public static native Object GetLocalInstance(Thread thr, int depth);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue())
    [all...]
  /art/test/1916-get-set-current-frame/src/art/
Locals.java 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
102 public static native Object GetLocalInstance(Thread thr, int depth);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue())
    [all...]
  /art/test/1923-frame-pop/src/art/
Locals.java 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
102 public static native Object GetLocalInstance(Thread thr, int depth);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue())
    [all...]
FramePop.java 24 public static native void notifyFramePop(Thread target, int depth) throws Exception;
  /art/test/1924-frame-pop-toggle/src/art/
Locals.java 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
102 public static native Object GetLocalInstance(Thread thr, int depth);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue())
    [all...]
FramePop.java 24 public static native void notifyFramePop(Thread target, int depth) throws Exception;
  /art/test/1925-self-frame-pop/src/art/
Locals.java 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
102 public static native Object GetLocalInstance(Thread thr, int depth);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue())
    [all...]
FramePop.java 24 public static native void notifyFramePop(Thread target, int depth) throws Exception;
  /art/test/1926-missed-frame-pop/src/art/
Locals.java 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
102 public static native Object GetLocalInstance(Thread thr, int depth);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue())
    [all...]
  /art/test/1935-get-set-current-frame-jit/src/art/
Locals.java 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
102 public static native Object GetLocalInstance(Thread thr, int depth);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue())
    [all...]
  /art/test/1939-proxy-frames/src/art/
Locals.java 97 public static native int GetLocalVariableInt(Thread thr, int depth, int slot);
98 public static native long GetLocalVariableLong(Thread thr, int depth, int slot);
99 public static native float GetLocalVariableFloat(Thread thr, int depth, int slot);
100 public static native double GetLocalVariableDouble(Thread thr, int depth, int slot);
101 public static native Object GetLocalVariableObject(Thread thr, int depth, int slot);
102 public static native Object GetLocalInstance(Thread thr, int depth);
104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) {
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue());
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) {
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue())
    [all...]
  /external/turbine/java/com/google/turbine/parse/
VariableInitializerParser.java 75 int depth = 0; field in class:VariableInitializerParser
99 depth = 1;
112 depth++;
222 int depth = 1; local
223 while (depth > 0) {
228 depth++;
233 depth--;
244 int depth = 1; local
245 while (depth > 0) {
250 depth++
308 int depth = 1; local
    [all...]
  /external/v8/src/compiler/
js-context-specialization.cc 36 DCHECK_LE(new_depth, access.depth());
38 if (new_depth == access.depth() &&
55 DCHECK_LE(new_depth, access.depth());
57 if (new_depth == access.depth() &&
73 size_t depth = access.depth(); local
76 Node* outer = NodeProperties::GetOuterContext(node, &depth);
83 return SimplifyJSLoadContext(node, outer, depth);
86 // Now walk up the concrete context chain for the remaining depth.
87 for (; depth > 0; --depth)
121 size_t depth = access.depth(); local
    [all...]
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
MessagePatternUtilDemo.java 29 private static final void printMessage(MessagePatternUtil.MessageNode msg, int depth) {
30 String indent = manySpaces.substring(0, depth * 2);
38 printArg((MessagePatternUtil.ArgNode)contents, depth);
47 private static final void printArg(MessagePatternUtil.ArgNode arg, int depth) {
48 System.out.print(manySpaces.substring(0, depth * 2) + "arg: «" + arg.getName() + "»");
63 printComplexArgStyle(arg.getComplexStyle(), depth + 1); local
69 int depth) {
71 System.out.println(manySpaces.substring(0, depth * 2) + "offset: " + style.getOffset());
73 String indent = manySpaces.substring(0, depth * 2);
94 printMessage(variant.getMessage(), depth + 1) local
169 genCodeForPlural(arg.getComplexStyle(), depth, firstResult, argName); local
172 genCodeForSelect(arg.getComplexStyle(), depth, firstResult, argName); local
199 genCode(otherVariant.getMessage(), depth, firstResult, pluralNumber); local
216 genCode(otherVariant.getMessage(), depth, firstResult, ""); local
219 genCode(otherVariant.getMessage(), depth + 1, firstResult, ""); local
236 genCode(variant.getMessage(), depth, firstResult, pluralNumber); local
254 genCode(variant.getMessage(), depth, firstResult, pluralNumber); local
    [all...]
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
AbstractTypeNode.java 37 public abstract void genJavaWrite(PrintWriter writer, int depth,
54 public void genJavaRead(PrintWriter writer, int depth,
56 indent(writer, depth);
61 genJavaDebugRead(writer, depth, readLabel, debugValue(readLabel));
64 public void genJavaDeclaration(PrintWriter writer, int depth) {
66 genJavaComment(writer, depth);
67 indent(writer, depth);
ErrorNode.java 63 void genJavaComment(PrintWriter writer, int depth) {}
65 void genJava(PrintWriter writer, int depth) {}
69 void genJavaDebugWrite(PrintWriter writer, int depth,
72 void genJavaDebugWrite(PrintWriter writer, int depth,
75 public void genJavaRead(PrintWriter writer, int depth,
78 void genJavaDebugRead(PrintWriter writer, int depth,
81 void genJavaPreDef(PrintWriter writer, int depth) {}
  /prebuilts/go/darwin-x86/test/bench/go1/
binarytree_test.go 17 func bottomUpTree(item, depth int) *binaryNode {
18 if depth <= 0 {
21 return &binaryNode{item, bottomUpTree(2*item-1, depth-1), bottomUpTree(2*item, depth-1)}
41 //fmt.Printf("stretch tree of depth %d\t check: %d\n", stretchDepth, check)
45 for depth := minDepth; depth <= maxDepth; depth += 2 {
46 iterations := 1 << uint(maxDepth-depth+minDepth)
50 check += bottomUpTree(i, depth).itemCheck(
    [all...]
  /prebuilts/go/linux-x86/test/bench/go1/
binarytree_test.go 17 func bottomUpTree(item, depth int) *binaryNode {
18 if depth <= 0 {
21 return &binaryNode{item, bottomUpTree(2*item-1, depth-1), bottomUpTree(2*item, depth-1)}
41 //fmt.Printf("stretch tree of depth %d\t check: %d\n", stretchDepth, check)
45 for depth := minDepth; depth <= maxDepth; depth += 2 {
46 iterations := 1 << uint(maxDepth-depth+minDepth)
50 check += bottomUpTree(i, depth).itemCheck(
    [all...]
  /external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
inception_v2.py 53 min_depth: Minimum depth value (number of channels) for all convolution ops.
56 depth_multiplier: Float multiplier for the depth (number of channels)
79 depth = lambda d: max(int(d * depth_multiplier), min_depth)
102 depthwise_multiplier = min(int(depth(64) / 3), 8)
105 depth(64), [7, 7],
123 depth(64), [1, 1],
131 net = layers.conv2d(net, depth(192), [3, 3], scope=end_point)
147 net, depth(64), [1, 1], scope='Conv2d_0a_1x1')
151 depth(64), [1, 1],
155 branch_1, depth(64), [3, 3], scope='Conv2d_0b_3x3'
    [all...]
  /frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/
UT_invert.java 31 private boolean Test(int width, int height, int depth) {
39 if (depth > 0) {
40 typeBuilder.setZ(depth);
44 if (depth < 1) {
45 depth = 1;
55 float a[] = new float[width * height * depth * 4];
56 float b[] = new float[width * height * depth * 4];
60 for (int i = 0; i < width * height * depth * 4; i++) {
77 for (int i = 0; i < width * height * depth * 4; i++) {
  /external/tensorflow/tensorflow/core/kernels/
eigen_activations_test.cc 29 const ptrdiff_t depth = 3; local
34 Tensor<float, 4> input(depth, rows, cols, batch);
37 Tensor<float, 4> result(depth, rows, cols, batch);
43 for (int d = 0; d < depth; ++d) {
53 const ptrdiff_t depth = 3; local
58 Tensor<float, 4> input(depth, rows, cols, batch);
61 Tensor<float, 4> result(depth, rows, cols, batch);
67 for (int d = 0; d < depth; ++d) {
77 const ptrdiff_t depth = 3; local
82 Tensor<float, 4> input(depth, rows, cols, batch)
    [all...]
  /frameworks/base/cmds/statsd/src/
FieldValue.h 37 int32_t getEncodedField(int32_t pos[], int32_t depth, bool includeDepth);
39 int32_t encodeMatcherMask(int32_t mask[], int32_t depth);
41 // Get the encoded field for a leaf with a [field] number at depth 0;
63 * Depth field0 [L]field1 [L]field1
65 * The first 8 bits are the depth of the field. for example, the uid 1000 has depth 2.
89 Field(int32_t tag, int32_t pos[], int32_t depth) : mTag(tag) {
90 mField = getEncodedField(pos, depth, true);
106 inline void decorateLastPos(int32_t depth) {
107 int32_t mask = kLastBitMask << 8 * (kMaxLogDepth - depth);
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
one_hot_op_test.py 57 depth = 3
69 depth=depth,
78 depth=depth,
87 depth = 3
94 self._testBothOneHot(indices=indices, depth=depth, truth=truth)
98 indices=indices, depth=depth, axis=0
    [all...]

Completed in 816 milliseconds

1 2 34 5 6 7 8 91011>>