HomeSort by relevance Sort by last modified time
    Searched refs:idx2 (Results 26 - 50 of 72) sorted by null

12 3

  /external/v8/test/webkit/
date-set-to-nan.js 360 for (var idx2 in testValues)
361 if (idx0 != 0 || idx1 != 0 || idx2 != 0) {
365 testValues[idx2]);
370 + testValues[idx2] + ") was "
392 for (var idx2 in testValues)
394 if (idx0 != 0 || idx1 != 0 || idx2 != 0 || idx3 != 0) {
398 testValues[idx2],
404 + testValues[idx2] + ", "
  /external/jdiff/src/jdiff/
RootDocToXML.java 72 int idx2 = xsdFileName.lastIndexOf('/'); local
73 if (idx == -1 && idx2 == -1) {
75 } else if (idx == -1 && idx2 != -1) {
76 xsdFileName = xsdFileName.substring(0, idx2);
77 } else if (idx != -1 && idx2 == -1) {
79 } else if (idx != -1 && idx2 != -1) {
80 int max = idx2 > idx ? idx2 : idx;
    [all...]
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 341 for (int idx2 = 0; idx2 < foundRoots; ++idx2) {
342 if (approximately_equal(t[idx2], 1)) {
349 for (int idx2 = 0; idx2 < foundRoots; ++idx2) {
350 if (approximately_equal(t[idx2], 0)) {
  /external/opencv/cv/src/
cvtemplmatch.cpp 342 int idx = 0, idx2 = 0; local
482 idx2 = i * sqsum_step;
484 for( j = 0; j < result->cols; j++, idx += cn, idx2 += cn )
505 t = q0[idx2+k] - q1[idx2+k] - q2[idx2+k] + q3[idx2+k];
cvemd.cpp 100 int* idx2; member in struct:CvEMDState
309 int cj = state.idx2[j];
361 sizeof( int ) + sizeof(CvNode2D*)) + /* idx1 & idx2 */
388 state->idx2 = (int*) buffer;
421 state->idx2[dsize++] = i;
443 state->idx2[dsize++] = -1;
517 int cj = state->idx2[j];
    [all...]
  /external/opencv3/3rdparty/libwebp/enc/
histogram.c 398 const uint32_t idx2 = (idx1 + diff + 1) % out_size; local
399 if (idx1 == idx2) {
404 out->histograms[idx2],
414 best_idx2 = idx2;
  /external/opencv3/modules/core/test/
test_ds.cpp 136 int idx, idx2; local
140 idx2 = idx * set_header->elem_size;
141 assert( set_header->array[idx2] == 0 );
142 set_header->array[idx2] = 1;
144 memcpy( set_header->array + idx2 + 1, elem, set_header->elem_size - 1 );
232 static void cvTsSimpleGraphAddEdge( CvTsSimpleGraph* graph, int idx1, int idx2, void* edge )
237 cvTsSimpleSetFind( graph->vtx, idx2 ));
241 int ofs = (idx1*graph->vtx->max_count + idx2)*graph->edge_size;
247 CV_SWAP( idx1, idx2, t );
252 static void cvTsSimpleGraphRemoveEdge( CvTsSimpleGraph* graph, int idx1, int idx2 )
    [all...]
test_mat.cpp 908 int idx1[MAX_DIM], idx2[MAX_DIM]; local
911 minMaxLoc(M3, &val1, &val2, idx1, idx2);
912 string s1 = idx2string(idx1, dims), s2 = idx2string(idx2, dims);
922 minMaxIdx(Md, &val1, &val2, idx1, idx2);
923 s1 = idx2string(idx1, dims), s2 = idx2string(idx2, dims);
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Mesh.java 755 * @param idx2 index of the second vertex in the triangle
760 public TriangleMeshBuilder addTriangle(int idx1, int idx2, int idx3) {
762 (idx2 >= mMaxIndex) || (idx2 < 0) ||
772 mIndexData[mIndexCount++] = (short)idx2;
  /dalvik/libdex/
DexProto.cpp 297 u4 idx2 = dexTypeListGetIdx(typeList2, i); local
300 dexStringByTypeIdx(dexFile2, idx2));
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-resources-plugin/2.4.3/
maven-resources-plugin-2.4.3.jar 
  /system/sepolicy/tools/sepolicy-analyze/
typecmp.c 121 int idx1, struct avtab_node *l2, int idx2)
148 display_allow(policydb, &c->key, idx2, perms2);
  /external/opencv3/modules/imgproc/src/
emd.cpp 100 int* idx2; member in struct:CvEMDState
305 int cj = state.idx2[j];
350 sizeof( int ) + sizeof(CvNode2D*)) + /* idx1 & idx2 */
368 state->idx2 = (int*) buffer;
401 state->idx2[dsize++] = i;
423 state->idx2[dsize++] = -1;
497 int cj = state->idx2[j];
    [all...]
templmatch.cpp     [all...]
histogram.cpp 399 int idx2 = cvFloor(*p2*a_[2] + b_[2]);
402 (unsigned)idx2 < (unsigned)size_[2] )
404 ( (tbb::atomic<int>*)(globalHistogram_ + hstep_[0]*idx0 + hstep_[1]*idx1) )[idx2].fetch_and_add(1);
416 int idx2 = cvFloor(*p2*a_[2] + b_[2]);
419 (unsigned)idx2 < (unsigned)size_[2] )
421 ( (tbb::atomic<int>*)(globalHistogram_ + hstep_[0]*idx0 + hstep_[1]*idx1) )[idx2].fetch_and_add(1);
870 int idx2 = cvFloor(*p2*a2 + b2);
873 (unsigned)idx2 < (unsigned)sz2 )
874 ((int*)(H + hstep0*idx0 + hstep1*idx1))[idx2]++;
882 int idx2 = cvFloor(*p2*a2 + b2)
    [all...]
  /external/opencv/cxcore/src/
cxutils.cpp 876 int idx1 = pair_buf[j], idx2 = pair_buf[j+1], row1, row2; local
878 row1 = idx1/step; row2 = idx2/step;
880 q = idata + row2*step + (idx2 - row2*cols)*elem_size;
888 int idx1 = pair_buf[j], idx2 = pair_buf[j+1], row1, row2; local
890 row1 = idx1/step; row2 = idx2/step;
892 q = data + row2*step + (idx2 - row2*cols)*elem_size;
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector.h 356 // idx1 and idx2 are raw indices to g_, not lock IDs.
357 bool testOnlyHasEdgeRaw(uptr idx1, uptr idx2) {
358 return g_.hasEdge(idx1, idx2);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_setup.c 216 LLVMValueRef idx2 = lp_build_const_int32(gallivm, bcolor_slot); local
221 a0_back = LLVMBuildLoad(b, LLVMBuildGEP(b, args->v0, &idx2, 1, ""), "v0a_back");
222 a1_back = LLVMBuildLoad(b, LLVMBuildGEP(b, args->v1, &idx2, 1, ""), "v1a_back");
223 a2_back = LLVMBuildLoad(b, LLVMBuildGEP(b, args->v2, &idx2, 1, ""), "v2a_back");
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
data_builder.c 377 int idx,idx2; local
408 idx2 = inv_pick_best_time_difference(td[idx], td[2]);
409 if (idx2 == 1)
424 idx2 = inv_pick_best_time_difference(td[idx], td[2]);
425 if (idx2 == 1)
    [all...]
  /external/opencv/cv/include/
cvcompat.h 483 #define cvQueryHistValue_3D( hist, idx0, idx1, idx2 ) \
484 ((float)cvGetReal3D( (hist)->bins, (idx0), (idx1), (idx2)))
494 #define cvGetHistValue_3D( hist, idx0, idx1, idx2 ) \
495 ((float*)cvPtr3D( (hist)->bins, (idx0), (idx1), (idx2), 0))
    [all...]
  /external/skia/tests/
PathOpsAngleIdeas.cpp 496 for (int idx2 = 0; idx2 < i.used(); ++idx2) {
497 double t = i[0][idx2];
    [all...]
  /external/vulkan-validation-layers/layers/
object_tracker.h     [all...]
  /external/opencv/cxcore/include/
cxcore.h 340 CVAPI(uchar*) cvPtr3D( const CvArr* arr, int idx0, int idx1, int idx2,
354 CVAPI(CvScalar) cvGet3D( const CvArr* arr, int idx0, int idx1, int idx2 );
360 CVAPI(double) cvGetReal3D( const CvArr* arr, int idx0, int idx1, int idx2 );
366 CVAPI(void) cvSet3D( CvArr* arr, int idx0, int idx1, int idx2, CvScalar value );
373 int idx1, int idx2, double value );
    [all...]
  /external/opencv3/modules/cudastereo/src/cuda/
stereocsbp.cu 583 int idx2 = d * disp_step2;
585 T val = data_cost[d * disp_step1] + u_cur[idx2] + d_cur[idx2] + l_cur[idx2] + r_cur[idx2];
    [all...]
  /external/guava/guava/lib/
jdiff.jar 

Completed in 1667 milliseconds

12 3