/external/valgrind/none/tests/ |
stackgrowth.c | 4 #define DEPTH (4*1024) 7 static void test(int depth) 13 if (depth > 1) 14 test(depth-1); 19 test(DEPTH);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
FramesDebuggee.java | 34 * thereby the specified depth <code>FramesDebuggee.DEPTH</code> of recursion 39 public final static int DEPTH = 10; 48 if (depthCount < DEPTH) { 49 logWriter.println("\tinvoke tested method: depth=" + depthCount); 53 if (depthCount == DEPTH) {
|
FramesTest.java | 64 * the method 'FramesDebuggee.recursiveMethod' thereby the specified depth 65 * 'FramesDebuggee.DEPTH' of recursion is reached. 118 * the method 'FramesDebuggee.recursiveMethod' thereby the specified depth 119 * 'FramesDebuggee.DEPTH' of recursion is reached. 173 * the method 'FramesDebuggee.recursiveMethod' thereby the specified depth 174 * 'FramesDebuggee.DEPTH' of recursion is reached. 228 * the method 'FramesDebuggee.recursiveMethod' thereby the specified depth 229 * 'FramesDebuggee.DEPTH' of recursion is reached. 235 * <BR>The length (the second parameter) is set to 'FramesDebuggee.DEPTH'. 237 * 'FramesDebuggee.DEPTH' and all returned frames have locations i [all...] |
/external/fio/tools/ |
fio_generate_plots | 105 DEPTH=$(echo $PT | cut -d "-" -f 4) 106 PLOT_LINE=$PLOT_LINE"'$x' using (\$1/1000):(\$2/$SCALE) title \"Queue depth $DEPTH\" with lines ls $i"
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
IntlTestDateFormat.java | 155 final int DEPTH = 10; 156 Date[] date = new Date[DEPTH]; 157 StringBuffer[] string = new StringBuffer[DEPTH]; 163 for (i=0; i<DEPTH; ++i) string[i] = new StringBuffer(); 164 for (i=0; i<DEPTH; ++i) { 197 if (i == DEPTH) --i;
|
DateFormatRoundTripTest.java | 48 private int DEPTH = 5; 180 Date[] d = new Date[DEPTH]; 181 String[] s = new String[DEPTH]; 192 for (loop = 0; loop < DEPTH; ++loop) { 225 // At this point loop == DEPTH if we've failed, otherwise loop is the 255 for (int j = 0; j <= loop && j < DEPTH; ++j) {
|
IntlTestNumberFormat.java | 165 final int DEPTH = 10; 166 double[] number = new double[DEPTH]; 167 String[] string = new String[DEPTH]; 173 for (i = 0; i < DEPTH; i++) { 209 if (i == DEPTH)
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
IntlTestDateFormat.java | 152 final int DEPTH = 10; 153 Date[] date = new Date[DEPTH]; 154 StringBuffer[] string = new StringBuffer[DEPTH]; 160 for (i=0; i<DEPTH; ++i) string[i] = new StringBuffer(); 161 for (i=0; i<DEPTH; ++i) { 194 if (i == DEPTH) --i;
|
DateFormatRoundTripTest.java | 45 private int DEPTH = 5; 177 Date[] d = new Date[DEPTH]; 178 String[] s = new String[DEPTH]; 189 for (loop = 0; loop < DEPTH; ++loop) { 222 // At this point loop == DEPTH if we've failed, otherwise loop is the 252 for (int j = 0; j <= loop && j < DEPTH; ++j) {
|
IntlTestNumberFormat.java | 162 final int DEPTH = 10; 163 double[] number = new double[DEPTH]; 164 String[] string = new String[DEPTH]; 170 for (i = 0; i < DEPTH; i++) { 206 if (i == DEPTH)
|
/external/icu/icu4c/source/test/intltest/ |
tsdate.cpp | 152 const int32_t DEPTH = 10; 153 UDate date[DEPTH]; 154 UnicodeString string[DEPTH]; 167 for (i=1; i<DEPTH; ++i) 200 if (i == DEPTH)
|
dtfmtrtts.h | 87 static int32_t DEPTH;
|
tsnmfmt.cpp | 286 const int32_t DEPTH = 10; 287 Formattable number[DEPTH]; 288 UnicodeString string[DEPTH]; 294 for (i=0; i<DEPTH; ++i) 345 if (i == DEPTH)
|
dtfmtrtts.cpp | 43 int32_t DateFormatRoundTripTest::DEPTH = 5; 322 UDate *d = new UDate [DEPTH]; 323 UnicodeString *s = new UnicodeString[DEPTH]; 340 for(loop = 0; loop < DEPTH; ++loop) { 382 // At this point loop == DEPTH if we've failed, otherwise loop is the 485 for(int j = 0; j <= loop && j < DEPTH; ++j) {
|
/external/tensorflow/tensorflow/core/kernels/hexagon/ |
hexagon_graph_execution_test.cc | 73 const int DEPTH = 3; 130 const int64 pixel_count = WIDTH * HEIGHT * DEPTH; 186 Tensor img_tensor(DT_FLOAT, {1, WIDTH, HEIGHT, DEPTH}); 187 CHECK_EQ(WIDTH * HEIGHT * DEPTH, img_floats.size()); 198 Tensor img_tensor(DT_QUINT8, {1, WIDTH, HEIGHT, DEPTH}); 199 CHECK_EQ(WIDTH * HEIGHT * DEPTH, quantized_img.size()); 410 inputs.emplace_back("Mul", Tensor(DT_FLOAT, {1, WIDTH, HEIGHT, DEPTH})); 443 inputs.emplace_back("Mul", Tensor(DT_QUINT8, {1, WIDTH, HEIGHT, DEPTH})); 477 inputs.emplace_back("Mul", Tensor(DT_FLOAT, {1, WIDTH, HEIGHT, DEPTH})); 508 inputs.emplace_back("Mul", Tensor(DT_FLOAT, {1, WIDTH, HEIGHT, DEPTH})); [all...] |
/external/emma/core/java12/com/vladium/emma/report/ |
IReportProperties.java | 45 String DEPTH = "depth";
|
ReportProperties.java | 101 public void setDepth (final int depth) 103 if ($assert.ENABLED) $assert.ASSERT (depth >= IItemMetadata.TYPE_ID_ALL && depth <= IItemMetadata.TYPE_ID_METHOD, "invalid depth: " + depth); 105 m_depth = depth; 299 final String depth = getReportProperty (properties, type, IReportProperties.DEPTH, false, IReportProperties.DEFAULT_DEPTH); local 301 if (IReportProperties.DEPTH_ALL.equals (depth)) 303 else if (IReportProperties.DEPTH_PACKAGE.equals (depth)) [all...] |
/system/core/libpixelflinger/include/pixelflinger/ |
format.h | 93 DEPTH = GGL_INDEX_DEPTH,
|
/external/tensorflow/tensorflow/core/kernels/ |
lrn_op_test.cc | 57 const int64 depth = input.dim_size(3); local 66 depth); 67 auto out = expected.reshape(Eigen::DSizes<int64, 2>{rest, depth}); 68 auto in = input.shaped<float, 2>({rest, depth}); 71 Eigen::Tensor<float, 1, Eigen::RowMajor> out_col(depth); 72 for (int64 d = 0; d < depth; ++d) { 75 r < std::min(depth, d + depth_radius + 1); ++r) { 173 #define TCASE(NAME, DEPTH, BATCH, DEPTH_RADIUS, BIAS, ALPHA, BETA) \ 183 AddInput<float>(TensorShape({BATCH, 1, 1, DEPTH}), \ 190 // DEPTH BATCH DEPTH_RADIUS BIAS ALPHA BET [all...] |
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nv20_state_fb.c | 105 /* depth/stencil */ 131 context_dirty(ctx, DEPTH);
|
nouveau_state.c | 101 context_dirty(ctx, DEPTH); 107 context_dirty(ctx, DEPTH); 155 context_dirty(ctx, DEPTH);
|
nv10_state_fb.c | 131 /* depth/stencil */ 155 context_dirty(ctx, DEPTH);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
ThreadGroupTest.java | 129 final int DEPTH = 4; 130 final Vector<ThreadGroup> subgroups = buildRandomTreeUnder(testRoot, DEPTH); 348 final int DEPTH = 4; 349 buildRandomTreeUnder(testRoot, DEPTH); 669 final int depth, final Vector<ThreadGroup> allCreated) { 670 if (depth <= 0) { 677 final String name = " Depth = " + depth + ",N = " + iClone 686 asyncBuildRandomTreeUnder(newGroup, depth - 1, allCreated); 695 final int depth) { [all...] |
/external/emma/ant/ant14/com/vladium/emma/report/ |
ReportCfg.java | 60 public void setDepth (final DepthAttribute depth) 62 m_settings.setProperty (m_prefix.concat (DEPTH), depth.getValue ()); 355 public void setDepth (final DepthAttribute depth) 357 m_settings.setProperty (PREFIX.concat (DEPTH), depth.getValue ());
|
/hardware/interfaces/graphics/common/1.0/ |
types.hal | 126 * Dataspace::DEPTH | Unprocessed implementation-dependent raw 127 * | depth measurements, opaque with 16 bit 150 * Dataspace::DEPTH | An android_depth_points buffer 383 * Dataspace::DEPTH, each pixel is a distance value measured by a depth 541 * which describes both gamma curve and numeric range (within the bit depth). 543 * Other dataspaces include depth measurement data from a depth camera. 917 * 0 to 2^b-1, where b is the bit depth of the color format. 923 * 1/16*2^b to 15/16*2^b for Cb, Cr, R, G and B, where b is the bit depth o [all...] |