/external/opencv3/modules/cudaobjdetect/src/cuda/ |
hog.cu | 645 int hidx = (int)::floorf(ang); 646 ang -= hidx; 647 hidx = (hidx + cnbins) % cnbins; 649 ((uchar2*)qangle.ptr(blockIdx.y))[x] = make_uchar2(hidx, (hidx + 1) % cnbins); 718 int hidx = (int)::floorf(ang); 719 ang -= hidx; 720 hidx = (hidx + cnbins) % cnbins [all...] |
/external/opencv3/modules/objdetect/src/opencl/ |
objdetect_hog.cl | 653 int hidx = (int)floor(ang); 654 ang -= hidx; 655 hidx = (hidx + cnbins) % cnbins; 657 qangle[(gidY * qangle_step + x) << 1] = hidx; 658 qangle[((gidY * qangle_step + x) << 1) + 1] = (hidx + 1) % cnbins; 713 int hidx = (int)floor(ang); 714 ang -= hidx; 715 hidx = (hidx + cnbins) % cnbins [all...] |
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/ |
ndbdic.c | 97 NJ_UINT16 hidx); 99 NJ_SEARCH_LOCATION_SET *loctset, NJ_UINT16 hidx); [all...] |
ndldic.c | 118 static NJ_INT16 get_cand_by_evaluate2(NJ_CLASS *iwnn, NJ_SEARCH_CONDITION *cond, NJ_SEARCH_LOCATION_SET *loctset, NJ_UINT8 search_pattern, NJ_UINT16 hIdx); 164 NJ_UINT16 hIdx; 209 for (hIdx = 0; (hIdx < NJ_MAX_DIC) && (pdicinfo->handle != loctset->loct.handle); hIdx++) { 213 if (hIdx == NJ_MAX_DIC) { 221 if ((con->ds->dic[hIdx].srhCache == NULL) || (con->ylen == 0) || 225 ret = get_cand_by_evaluate2(iwnn, con, loctset, con->operation, hIdx); 228 NJ_SET_CACHEOVER_TO_SCACHE(con->ds->dic[hIdx].srhCache); 229 ret = get_cand_by_evaluate2(iwnn, con, loctset, con->operation, hIdx); [all...] |
/external/elfutils/src/ |
strip.c | 1604 size_t hidx = elf_hash (name) % nbucket; local 1666 size_t hidx = elf_hash (name) % nbucket; local [all...] |
/external/opencv3/modules/objdetect/ |
opencl_kernels_objdetect.cpp | [all...] |
/external/opencv3/modules/objdetect/test/ |
test_cascadeandhog.cpp | 1296 int hidx = cvFloor(angle); local [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
Finder_items.py | 205 which = 'hidx' 332 'hidx' : _Prop_extension_hidden,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
Finder_items.py | 205 which = 'hidx' 332 'hidx' : _Prop_extension_hidden,
|
/external/opencv3/modules/core/src/ |
matrix.cpp | 5015 size_t hidx = h & (hdr->hashtab.size() - 1), nidx = hdr->hashtab[hidx], previdx=0; local 5034 size_t hidx = h & (hdr->hashtab.size() - 1), nidx = hdr->hashtab[hidx], previdx=0; local 5055 size_t hidx = h & (hdr->hashtab.size() - 1), nidx = hdr->hashtab[hidx], previdx=0; local 5131 size_t hidx = hashval & (hsize - 1); local [all...] |
/external/opencv3/modules/imgproc/src/ |
histogram.cpp | 543 size_t hidx = tab_[i]; 544 if( hidx < OUT_OF_RANGE ) 546 *(int*)((globalHistogram_ + hidx)) += localHistogram[i]; [all...] |
/external/opencv3/modules/objdetect/src/ |
hog.cpp | 456 int hidx = cvFloor(angle); local 457 angle -= hidx; 461 if( hidx < 0 ) 462 hidx += nbins; 463 else if( hidx >= nbins ) 464 hidx -= nbins; 466 CV_Assert( (unsigned)hidx < (unsigned)nbins ); 468 qanglePtr[x*2] = (uchar)hidx; 469 hidx++; 470 hidx &= hidx < nbins ? -1 : 0 [all...] |
/external/opencv3/modules/core/include/opencv2/core/ |
mat.hpp | [all...] |