/external/skia/src/core/ |
D | SkStrokerPriv.cpp | 22 static void ButtCapper(SkPath* path, const SkPoint& pivot, in ButtCapper() argument 29 static void RoundCapper(SkPath* path, const SkPoint& pivot, in RoundCapper() argument 33 SkScalar px = pivot.fX; in RoundCapper() 34 SkScalar py = pivot.fY; in RoundCapper() 48 static void SquareCapper(SkPath* path, const SkPoint& pivot, in SquareCapper() argument 57 path->setLastPt(pivot.fX + normal.fX + parallel.fX, pivot.fY + normal.fY + parallel.fY); in SquareCapper() 58 path->lineTo(pivot.fX - normal.fX + parallel.fX, pivot.fY - normal.fY + parallel.fY); in SquareCapper() 62 path->lineTo(pivot.fX + normal.fX + parallel.fX, pivot.fY + normal.fY + parallel.fY); in SquareCapper() 63 path->lineTo(pivot.fX - normal.fX + parallel.fX, pivot.fY - normal.fY + parallel.fY); in SquareCapper() 93 static void HandleInnerJoin(SkPath* inner, const SkPoint& pivot, const SkVector& after) in HandleInnerJoin() argument [all …]
|
D | SkStrokerPriv.h | 33 const SkPoint& pivot, 40 const SkPoint& pivot,
|
D | SkTSearch.cpp | 151 char* pivot = left; in SkQSort_Partition() local 155 while (left < last && compare(left, pivot) < 0) in SkQSort_Partition() 157 while (first < rite && compare(rite, pivot) > 0) in SkQSort_Partition()
|
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
D | SDL_qsort.c | 207 while (compare(first,pivot)<0) first+=sz; \ 208 while (compare(pivot,last)<0) last-=sz; \ 243 memcpy(pivot,first,size); \ 245 memcpy(test,pivot,size); \ 308 char *pivot=malloc(size); in qsort_nonaligned() local 310 assert(pivot!=0); in qsort_nonaligned() 320 memcpy(pivot,mid,size); in qsort_nonaligned() 330 free(pivot); in qsort_nonaligned() 339 char *pivot=malloc(size); in qsort_aligned() local 341 assert(pivot!=0); in qsort_aligned() [all …]
|
/external/opencv/cxcore/include/ |
D | cxmisc.h | 470 T* pivot; \ 478 pivot = left + (n/2); \ 487 a = pivot - d, b = pivot, c = pivot + d; \ 488 pivot = LT(*a, *b) ? (LT(*b, *c) ? b : (LT(*a, *c) ? c : a)) \ 496 a = left, b = pivot, c = right; \ 497 pivot = LT(*a, *b) ? (LT(*b, *c) ? b : (LT(*a, *c) ? c : a)) \ 499 if( pivot != left0 ) \ 501 CV_SWAP( *pivot, *left0, t ); \ 502 pivot = left0; \ 509 while( left <= right && !LT(*pivot, *left) ) \ [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | NodeVector.java | 671 int pivot = a[(lo + hi) / 2]; in sort() local 674 a[hi] = pivot; in sort() 683 while (a[lo] <= pivot && lo < hi) in sort() 692 while (pivot <= a[hi] && lo < hi) in sort() 719 a[hi] = pivot; in sort()
|
/external/libvpx/vp8/encoder/ |
D | rdopt.c | 1449 int lidx,ridx,pivot; in quicksortmv() local 1456 pivot = (left + right)/2; in quicksortmv() 1458 while(lidx <=pivot && ridx >=pivot) in quicksortmv() 1460 while(arr[lidx] < arr[pivot] && lidx <= pivot) in quicksortmv() 1462 while(arr[ridx] > arr[pivot] && ridx >= pivot) in quicksortmv() 1467 if(lidx-1 == pivot) in quicksortmv() 1470 pivot = ridx; in quicksortmv() 1472 else if(ridx+1 == pivot) in quicksortmv() 1475 pivot = lidx; in quicksortmv() 1478 quicksortmv(arr, left, pivot - 1); in quicksortmv() [all …]
|
/external/icu4c/test/perf/utfperf/ |
D | utfperf.cpp | 34 static UChar pivot[INTERMEDIATE_CAPACITY]; variable 298 pivotSource=pivotTarget=pivot; in call() 299 pivotLimit=pivot+testcase.pivotLength; in call() 308 pivot, &pivotSource, &pivotTarget, pivotLimit, in call()
|
/external/opencv/cv/src/ |
D | _cvkdtree.hpp | 127 const __instype & pivot; member 132 : pivot(_pivot), dim(_dim), deref(_deref), ctor(_ctor) { in median_pr() 135 return deref(ctor(lhs), dim) <= deref(ctor(pivot), dim); in operator ()() 142 int pivot = (last - first) / 2; in median_partition() local 144 std::swap(first[pivot], last[-1]); in median_partition()
|
/external/webrtc/src/modules/audio_processing/aecm/main/matlab/ |
D | getBspectrum.m | 3 % compute binary spectrum using threshold spectrum as pivot
|
/external/webrtc/src/modules/audio_processing/aecm/main/matlab/matlab/ |
D | getBspectrum.m | 3 % compute binary spectrum using threshold spectrum as pivot
|
/external/v8/src/ |
D | array.js | 727 var pivot = v1; 731 a[low_end] = pivot; 737 var order = %_CallFunction(global_receiver, element, pivot, comparefn); 746 order = %_CallFunction(global_receiver, top_elem, pivot, comparefn);
|
/external/opencv/cxcore/src/ |
D | cxdatastructs.cpp | 2248 schar *m1, *m2, *m3, *pivot; in cvSeqSort() local 2290 pivot = icvMed3( m1, m2, m3, cmp_func, aux ); in cvSeqSort() 2292 if( pivot != left.ptr ) in cvSeqSort() 2294 CV_SWAP_ELEMS( pivot, left.ptr, elem_size ); in cvSeqSort() 2295 pivot = left.ptr; in cvSeqSort() 2302 while( left.ptr != right.ptr && (r = cmp_func(left.ptr, pivot, aux)) <= 0 ) in cvSeqSort() 2314 while( left.ptr != right.ptr && (r = cmp_func(right.ptr,pivot, aux)) >= 0 ) in cvSeqSort() 2328 r = cmp_func(left.ptr, pivot, aux); in cvSeqSort()
|
/external/icu4c/common/ |
D | ucnv.c | 2408 UChar *pivot, *pivot2; in ucnv_internalConvert() local 2427 pivot=pivot2=pivotBuffer; in ucnv_internalConvert() 2437 pivotBuffer, &pivot, &pivot2, pivotBuffer+CHUNK_SIZE, in ucnv_internalConvert() 2460 pivotBuffer, &pivot, &pivot2, pivotBuffer+CHUNK_SIZE, in ucnv_internalConvert()
|
/external/icu4c/test/testdata/ |
D | format.txt | 293 …Description { "Test consistent pivot (parse/format) for multiple year lengths, y yy yyy yyyy yyyyy…
|
/external/libxml2/patches/ |
D | 0001-Add-ICU-support-for-libxml.patch | 223 + * 2. had we better use an explicit pivot buffer?
|
/external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/ |
D | PHP Markdown Extra Readme.text | 160 | [Pivot][] | `(site home)/pivot/includes/markdown/`
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-12-31 | 15449 ….org/show_bug.cgi?id=11127 NativeListBox: arrow and drag selection should pivot around one list it…
|
D | ChangeLog-2005-08-23 | 46107 <rdar://problem/3632348>: "www.whatis.com search for "pivot table" leads to JavaScript hang"
|