Searched refs:oob (Results 1 – 6 of 6) sorted by relevance
/external/llvm/test/Transforms/IndVarSimplify/ |
D | sharpen-range.ll | 21 %oob.pred = icmp slt i32 %idx, %length 22 br i1 %oob.pred, label %loop.next, label %oob 23 ; CHECK: br i1 true, label %loop.next, label %oob 37 oob: 55 %oob.pred = icmp sle i32 %idx, %length 56 br i1 %oob.pred, label %loop.next, label %oob 57 ; CHECK: br i1 true, label %loop.next, label %oob 71 oob:
|
D | use-range-metadata.ll | 17 %oob.pred = icmp slt i32 %idx, %length 18 br i1 %oob.pred, label %loop.next, label %oob 19 ; CHECK: br i1 true, label %loop.next, label %oob 32 oob:
|
/external/v8/test/mjsunit/compiler/ |
D | escape-analysis.js | 256 function oob(constructor, branch) { function 264 assertEquals(3, oob(cons1, false)); 265 assertEquals(3, oob(cons1, false)); 266 assertEquals(7, oob(cons2, true)); 267 assertEquals(7, oob(cons2, true)); 269 assertEquals(7, oob(cons2, true)); 270 assertEquals(7, oob(cons2, true)); 271 %OptimizeFunctionOnNextCall(oob); 272 assertEquals(7, oob(cons2, true));
|
/external/strace/ |
D | dirent.c | 118 int oob = d->d_reclen < sizeof(kernel_dirent) || in SYS_FUNC() local 120 int d_name_len = oob ? len - i : d->d_reclen; in SYS_FUNC() 136 if (oob) in SYS_FUNC()
|
/external/opencv3/modules/ml/doc/ |
D | ml_intro.markdown | 270 replacement, some vectors are left out (so-called _oob (out-of-bag) data_ ). The size of oob data is 271 about N/3 . The classification error is estimated by using this oob-data as follows: 273 - Get a prediction for each vector, which is oob relative to the i-th tree, using the very i-th 276 - After all the trees have been trained, for each vector that has ever been oob, find the 278 the vector was oob) and compare it to the ground-truth response. 280 - Compute the classification error estimate as a ratio of the number of misclassified oob vectors 281 to all the vectors in the original data. In case of regression, the oob-error is computed as the 282 squared error for oob vectors difference divided by the total number of vectors.
|
/external/v8/src/compiler/x64/ |
D | code-generator-x64.cc | 430 Label oob; \ 433 __ j(above_equal, &oob, Label::kNear); \ 437 __ bind(&oob); \
|