Home
last modified time | relevance | path

Searched refs:srch (Results 1 – 10 of 10) sorted by relevance

/external/icu/icu4c/source/test/perf/strsrchperf/
Dstrsrchperf.h14 typedef void (*StrSrchFn)(UStringSearch* srch, const UChar* src,int32_t srcLen, const UChar* pttrn,…
23 UStringSearch* srch; variable
27 (*fn)(srch, src, srcLen, pttrn, pttrnLen, status); in call()
40 srch = search; in StringSearchPerfFunction()
50 UStringSearch* srch; variable
61 void ICUForwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pat… in ICUForwardSearch() argument
64 match = usearch_first(srch, status); in ICUForwardSearch()
66 match = usearch_next(srch, status); in ICUForwardSearch()
70 void ICUBackwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pa… in ICUBackwardSearch() argument
73 match = usearch_last(srch, status); in ICUBackwardSearch()
[all …]
Dstrsrchperf.cpp17 srch = NULL; in StringSearchPerformanceTest()
63 srch = usearch_open(pttrn, pttrnLen, src, srcLen, locale, NULL, &status); in StringSearchPerformanceTest()
76 if (srch != NULL) { in ~StringSearchPerformanceTest()
77 usearch_close(srch); in ~StringSearchPerformanceTest()
94 …StringSearchPerfFunction* func = new StringSearchPerfFunction(ICUForwardSearch, srch, src, srcLen,… in Test_ICU_Forward_Search()
99 …StringSearchPerfFunction* func = new StringSearchPerfFunction(ICUBackwardSearch, srch, src, srcLen… in Test_ICU_Backward_Search()
/external/libvpx/libvpx/vp8/common/
Dextend.c108 int srch, int srcw) in vp8_copy_and_extend_frame_with_rect() argument
124 if (srcy + srch != src->y_height) in vp8_copy_and_extend_frame_with_rect()
133 srch, srcw, in vp8_copy_and_extend_frame_with_rect()
140 srch = (srch + 1) >> 1; in vp8_copy_and_extend_frame_with_rect()
147 srch, srcw, in vp8_copy_and_extend_frame_with_rect()
154 srch, srcw, in vp8_copy_and_extend_frame_with_rect()
Dextend.h27 int srch, int srcw);
/external/libvpx/libvpx/vp9/encoder/
Dvp9_extend.c97 int srch, int srcw) { in vp9_copy_and_extend_frame_with_rect() argument
101 const int eb_y = srcy + srch != src->y_height ? 0 : in vp9_copy_and_extend_frame_with_rect()
114 const int srch_uv = ROUND_POWER_OF_TWO(srch, 1); in vp9_copy_and_extend_frame_with_rect()
119 srcw, srch, in vp9_copy_and_extend_frame_with_rect()
Dvp9_extend.h28 int srch, int srcw);
/external/mesa3d/src/gallium/state_trackers/xvmc/
Dsurface.c343 short srcx, short srcy, unsigned short srcw, unsigned short srch, in XvMCPutSurface() argument
357 struct u_rect src_rect = {srcx, srcx + srcw, srcy, srcy + srch}; in XvMCPutSurface()
377 assert(srcy + srch - 1 < surface->height); in XvMCPutSurface()
/external/mesa3d/src/gallium/state_trackers/va/
Dva_surface.c113 unsigned short srcw, unsigned short srch, short destx, short desty, in vlVaPutSurface() argument
Dva_private.h99 unsigned short srch,
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/search/
DSearchTest.java2114 StringSearch srch = new StringSearch(dummyPat, ci, col); in TestUsingSearchCollator() local
2116 srch.setPattern(patternAndOffsets.getPattern()); in TestUsingSearchCollator()
2121 srch.reset(); in TestUsingSearchCollator()
2124 offset = srch.next(); in TestUsingSearchCollator()
2143 srch.reset(); in TestUsingSearchCollator()
2146 offset = srch.previous(); in TestUsingSearchCollator()