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

1 2 3 45 6 7 8 91011>>

  /art/test/1926-missed-frame-pop/src/art/
FramePop.java 24 public static native void notifyFramePop(Thread target, int depth) throws Exception;
  /art/test/1939-proxy-frames/
local_instance.cc 39 jint depth) {
42 if (JvmtiErrorToException(env, jvmti_env, jvmti_env->GetFrameLocation(thr, depth, &m, &loc))) {
57 jint depth) {
60 JvmtiErrorToException(env, jvmti_env, jvmti_env->GetFrameLocation(thr, depth, &m, &loc));
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
MultiSynch.java 72 * @param depth
74 private static void run(Object[] params, Object[] synchArr, Action action, int depth) {
76 synchronized (synchArr[depth]) {
77 if (depth < synchArr.length - 1) {
78 run(params, synchArr, action, ++depth);
  /external/elfutils/libdw/
dwarf_getscopes_die.c 37 scope_visitor (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg)
42 Dwarf_Die *scopes = malloc (depth * sizeof scopes[0]);
56 assert (i == depth);
59 return depth;
  /external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
depth.pass.cpp 16 // int depth() const
41 TEST_CHECK(it.depth() == 0);
50 TEST_CHECK(it.depth() == 0);
52 TEST_CHECK(it.depth() == 1);
55 TEST_CHECK(it.depth() == 2);
58 TEST_CHECK(!"Unexpected depth while iterating over static env");
copy_assign.pass.cpp 36 // it.depth() == 1
44 while (it.depth() != 1) {
48 TEST_ASSERT(it.depth() == 1);
59 // it.depth() == 2
67 while (it.depth() != 2) {
71 TEST_ASSERT(it.depth() == 2);
92 TEST_CHECK(to.depth() == from.depth());
117 TEST_CHECK(it2.depth() != it.depth());
    [all...]
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
CommandNode.java 58 void genJavaClassSpecifics(PrintWriter writer, int depth) {
59 indent(writer, depth);
64 void genJava(PrintWriter writer, int depth) {
65 genJavaClass(writer, depth);
TaggedObjectTypeNode.java 37 public void genJavaWrite(PrintWriter writer, int depth,
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
params.cc 23 float ResolveParam(const DepthDependentParam& param, int32 depth) {
30 val = depth * param.linear().slope() + param.linear().y_intercept();
39 param.exponential().depth_multiplier() * depth));
42 if (depth >= param.threshold().threshold()) {
  /libcore/benchmarks/src/benchmarks/
GetInstancesOfClassesBenchmark.java 26 public ObjectTree(int depth) {
27 if (depth > 1) {
28 left = new ObjectTree(depth - 1);
29 right = new ObjectTree(depth - 1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
depth.pass.cpp 16 // int depth() const
41 TEST_CHECK(it.depth() == 0);
50 TEST_CHECK(it.depth() == 0);
52 TEST_CHECK(it.depth() == 1);
55 TEST_CHECK(it.depth() == 2);
58 TEST_CHECK(!"Unexpected depth while iterating over static env");
  /external/deqp/modules/glshared/
glsFragmentOpUtil.hpp 54 float depth[4]; member in struct:deqp::gls::FragmentOpUtil::Quad
60 for (int i = 0; i < DE_LENGTH_OF_ARRAY(depth); i++)
61 depth[i] = 0.0f;
90 // Viewport coordinates (depth in range [0, 1]).
94 float depth[4]; member in struct:deqp::gls::FragmentOpUtil::IntegerQuad
100 for (int i = 0; i < DE_LENGTH_OF_ARRAY(depth); i++)
101 depth[i] = 0.0f;
108 for (int i = 0; i < DE_LENGTH_OF_ARRAY(depth); i++)
109 depth[i] = 0.0f;
  /external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
inception_v3.py 79 min_depth: Minimum depth value (number of channels) for all convolution ops.
82 depth_multiplier: Float multiplier for the depth (number of channels)
103 depth = lambda d: max(int(d * depth_multiplier), min_depth)
112 net = layers.conv2d(inputs, depth(32), [3, 3], stride=2, scope=end_point)
118 net = layers.conv2d(net, depth(32), [3, 3], scope=end_point)
125 net, depth(64), [3, 3], padding='SAME', scope=end_point)
137 net = layers.conv2d(net, depth(80), [1, 1], scope=end_point)
143 net = layers.conv2d(net, depth(192), [3, 3], scope=end_point)
165 net, depth(64), [1, 1], scope='Conv2d_0a_1x1')
168 net, depth(48), [1, 1], scope='Conv2d_0a_1x1'
    [all...]
  /external/ImageMagick/PerlMagick/t/ttf/
read.t 22 q/size=>'512x512', depth=>8/,
32 q!font=>'input.ttf', fill=>'#0000FF', pointsize=>14, size=>'245x16', depth=>8!,
41 q!size=>'250x20', depth=>8!,
  /external/libunwind/tests/
Gtest-exc.c 46 int depth = 13; variable
66 for (i = 0; i < depth + 2; ++i)
113 if (n == depth)
141 depth = atol (argv[1]);
142 if (depth < 1)
144 fprintf (stderr, "Usage: %s depth\n"
145 " depth must be >= 1\n", argv[0]);
150 result = a (depth);
  /external/ltp/testcases/kernel/fs/ext4-new-features/ext4-subdir-limit/
create_long_dirs.c 90 int depth; local
93 depth = 1;
95 depth = 2;
97 depth = 3;
101 if (depth == 1) {
110 if (depth == 2) {
  /external/tensorflow/tensorflow/contrib/compiler/
jit.py 31 """Keeps track of previous XLA scope calls, and depth of current call."""
33 def __init__(self, count, depth):
35 self.depth = depth
102 if xla_scope_counter.depth == 0:
111 xla_scope_counter.depth += 1
118 xla_scope_counter.depth -= 1
  /frameworks/base/cmds/statsd/src/
FieldValue.cpp 26 int32_t getEncodedField(int32_t pos[], int32_t depth, bool includeDepth) {
28 for (int32_t i = 0; i <= depth; i++) {
34 field |= (depth << 24);
39 int32_t encodeMatcherMask(int32_t mask[], int32_t depth) {
40 return getEncodedField(mask, depth, false) | 0xff000000;
59 void translateFieldMatcher(int tag, const FieldMatcher& matcher, int depth, int* pos, int* mask,
61 if (depth > kMaxLogDepth) {
62 ALOGE("depth > 2");
66 pos[depth] = matcher.field();
67 mask[depth] = 0x7f
    [all...]
  /external/dtc/tests/
supernode_atdepth_offset.c 33 int depth = 0; local
42 depth++;
48 return depth;
51 static int path_prefix(const char *path, int depth)
59 if (depth == 0)
63 for (i = 0; i < depth; i++)
70 int depth)
77 pathprefixlen = path_prefix(path, depth);
82 verbose_printf("Path %s (%d), depth %d, supernode is %s\n",
83 path, pdepth, depth, superpath)
    [all...]
  /frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/
UT_global_query.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;
56 int g[] = new int[width * height * depth];
57 int d[] = new int[width * height * depth];
58 int r[] = new int[width * height * depth];
62 for (int i = 0; i < width * height * depth; i++) {
84 for (int i = 0; i < width * height * depth; i++)
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
export_test.go 16 func (r *genericReplacer) printNode(t *trieNode, depth int) (s string) {
25 s += Repeat(".", depth) + t.prefix
26 s += r.printNode(t.next, depth+len(t.prefix))
30 s += Repeat(".", depth) + string([]byte{byte(b)})
31 s += r.printNode(t.table[m], depth+1)
  /prebuilts/go/linux-x86/src/strings/
export_test.go 16 func (r *genericReplacer) printNode(t *trieNode, depth int) (s string) {
25 s += Repeat(".", depth) + t.prefix
26 s += r.printNode(t.next, depth+len(t.prefix))
30 s += Repeat(".", depth) + string([]byte{byte(b)})
31 s += r.printNode(t.table[m], depth+1)
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlSerializer.java 40 private int depth; field in class:KXmlSerializer
90 depth++;
93 if (indent.length <= depth) {
94 boolean[] hlp = new boolean[depth + 4];
95 System.arraycopy(indent, 0, hlp, 0, depth);
98 indent[depth] = indent[depth - 1];
100 for (int i = nspCounts[depth - 1]; i < nspCounts[depth]; i++) {
113 if (nspCounts.length <= depth + 1)
    [all...]
  /art/test/ti-agent/
locals_helper.cc 49 jint depth,
52 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalObject(t, depth, slot, val));
58 jint depth,
61 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalDouble(t, depth, slot, val));
67 jint depth,
70 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalFloat(t, depth, slot, val));
76 jint depth,
79 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalLong(t, depth, slot, val));
85 jint depth,
88 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetLocalInt(t, depth, slot, val))
    [all...]
  /external/ImageMagick/PerlMagick/t/
read.t 185 testReadCompare('xc:black', 'reference/read/input_xc_black.miff', q/size=>"70x46",, depth=>8/, 0.0, 0.0);
197 q/size=>"140x92", depth=>8/, 0.0, 0.0);
202 q/size=>"70x46", depth=>8/, 0.0, 0.0);
207 q/size=>"70x46", depth=>8/, 0.0, 0.0);
212 q/size=>"70x46", depth=>8/, 0.0, 0.0);
217 q/size=>"70x46", depth=>8/, 0.0, 0.0);
222 q/size=>"70x46", depth=>8/, 0.0, 0.0);

Completed in 698 milliseconds

1 2 3 45 6 7 8 91011>>