HomeSort by relevance Sort by last modified time
    Searched refs:srch (Results 1 - 7 of 7) sorted by null

  /external/icu4c/test/perf/strsrchperf/
strsrchperf.h 22 typedef void (*StrSrchFn)(UStringSearch* srch, const UChar* src,int32_t srcLen, const UChar* pttrn, int32_t pttrnLen, UErrorCode* status);
35 UStringSearch* srch; member in class:StringSearchPerfFunction
43 (*fn)(srch, src, srcLen, pttrn, pttrnLen, status);
71 srch = search;
86 UStringSearch* srch; member in class:StringSearchPerformanceTest
118 void ICUForwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pattern, int32_t patternLen, UErrorCode* status) {
121 match = usearch_first(srch, status);
123 match = usearch_next(srch, status);
127 void ICUBackwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pattern, int32_t patternLen, UErrorCode* status) {
130 match = usearch_last(srch, status)
    [all...]
strsrchperf.cpp 21 srch = NULL;
77 srch = usearch_open(pttrn, pttrnLen, src, srcLen, locale, NULL, &status);
101 if (srch != NULL) {
102 usearch_close(srch);
123 StringSearchPerfFunction* func = new StringSearchPerfFunction(ICUForwardSearch, srch, src, srcLen, pttrn, pttrnLen);
132 StringSearchPerfFunction* func = new StringSearchPerfFunction(ICUBackwardSearch, srch, src, srcLen, pttrn, pttrnLen);
  /external/libvpx/libvpx/vp8/common/
extend.h 23 int srch, int srcw);
extend.c 108 int srch, int srcw)
124 if (srcy + srch != src->y_height)
133 srch, srcw,
140 srch = (srch + 1) >> 1;
147 srch, srcw,
154 srch, srcw,
  /external/openssl/crypto/store/
str_mem.c 276 int srch; local
299 srch = sk_MEM_OBJECT_DATA_find_ex(store->data, &key);
301 if (srch >= 0)
303 context->search_index = srch;
314 for(srch = context->search_index;
315 srch < sk_MEM_OBJECT_DATA_num(store->data)
317 sk_MEM_OBJECT_DATA_value(store->data, srch)->attr_info)
319 sk_MEM_OBJECT_DATA_value(store->data, srch)->attr_info));
320 srch++)
323 context->search_index = srch;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_yuv.c 86 int srcx, srcy, srcw, srch; local
98 srch = overlay->h;
115 srch += (dsty * overlay->h) / dstrect->h;
122 srch -= (extra * overlay->h) / dstrect->h;
125 if ( srcw <= 0 || srch <= 0 ||
126 srch <= 0 || dsth <= 0 ) {
133 src.h = srch;
  /external/qemu/distrib/sdl-1.2.15/test/
testblitspeed.c 206 int srch = 480; local
249 srch = atoi(argv[++i]);
298 src = SDL_CreateRGBSurface(srcflags, srcw, srch, srcbpp,

Completed in 154 milliseconds