HomeSort by relevance Sort by last modified time
    Searched refs:comp (Results 51 - 75 of 355) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
multiway_merge.h 94 Comparator& comp; member in class:__gnu_parallel::guarded_iterator
100 * @param comp Comparator provided for associated overloaded
103 RandomAccessIterator end, Comparator& comp)
104 : current(begin), end(end), comp(comp)
151 return (bi1.comp)(*bi1, *bi2); //normal compare
167 return !(bi1.comp)(*bi2, *bi1); //normal compare
190 mutable Comparator& comp; member in class:__gnu_parallel::unguarded_iterator
196 * @param comp Unused, only for compatibility. */
198 RandomAccessIterator end, Comparator& comp)
    [all...]
multiway_mergesort.h 135 Comparator& comp,
155 sd->starts[iam + 1], offsets.begin(), comp);
191 Comparator& comp,
208 comp);
221 comp)
233 comp)
251 const RandomAccessIterator& end, Comparator& comp) const
253 __gnu_sequential::stable_sort(begin, end, comp);
261 const RandomAccessIterator end, Comparator& comp) const
263 __gnu_sequential::sort(begin, end, comp);
    [all...]
losertree.h 80 Comparator comp; member in class:__gnu_parallel::LoserTreeBase
97 : comp(_comp)
190 && !comp(losers[right].key, losers[left].key)))
228 && ((comp(losers[pos].key, key))
229 || (!comp(key, losers[pos].key)
285 && !comp(losers[right].key, losers[left].key)))
323 if (sup || (!losers[pos].sup && comp(losers[pos].key, key)))
356 Comparator comp; member in class:__gnu_parallel::LoserTreePointerBase
360 : comp(_comp)
417 || (!losers[left].sup && !comp(*losers[right].keyp
565 Comparator comp; member in class:__gnu_parallel::LoserTreeUnguardedBase
800 Comparator comp; member in class:__gnu_parallel::LoserTreePointerUnguardedBase
    [all...]
base.h 162 Comparator& comp; member in class:__gnu_parallel::equal_from_less
165 equal_from_less(Comparator& _comp) : comp(_comp) { }
169 return !comp(a, b) && !comp(b, a);
435 according to @c comp.
439 * @param comp Comparator.
444 RandomAccessIterator c, Comparator& comp)
446 if (comp(*a, *b))
447 if (comp(*b, *c))
450 if (comp(*a, *c)
    [all...]
multiseq_selection.h 59 Comparator& comp; member in class:__gnu_parallel::lexicographic
62 lexicographic(Comparator& _comp) : comp(_comp) { }
68 if (comp(p1.first, p2.first))
71 if (comp(p2.first, p1.first))
84 Comparator& comp; member in class:__gnu_parallel::lexicographic_reverse
87 lexicographic_reverse(Comparator& _comp) : comp(_comp) { }
93 if (comp(p2.first, p1.first))
96 if (comp(p1.first, p2.first))
118 * @param comp The ordering functor, defaults to std::less<T>.
126 Comparator comp = std::less
    [all...]
  /external/webkit/Source/WebCore/bridge/
testqtbindings.cpp 110 Completion comp(interp->evaluate("", 0, code));
112 if (comp.complType() == Throw) {
114 JSValue* exVal = comp.value();
128 else if (comp.complType() == ReturnValue) {
129 char* msg = comp.value()->toString(interp->globalExec()).ascii();
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_queue.h 380 _Compare comp; member in class:priority_queue
390 : c(__s), comp(__x)
391 { std::make_heap(c.begin(), c.end(), comp); }
396 : c(__s), comp(__x)
397 { std::make_heap(c.begin(), c.end(), comp); }
402 : c(std::move(__s)), comp(__x)
403 { std::make_heap(c.begin(), c.end(), comp); }
426 : c(__s), comp(__x)
430 std::make_heap(c.begin(), c.end(), comp);
437 : c(__s), comp(__x
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_queue.h 380 _Compare comp; member in class:priority_queue
390 : c(__s), comp(__x)
391 { std::make_heap(c.begin(), c.end(), comp); }
396 : c(__s), comp(__x)
397 { std::make_heap(c.begin(), c.end(), comp); }
402 : c(std::move(__s)), comp(__x)
403 { std::make_heap(c.begin(), c.end(), comp); }
426 : c(__s), comp(__x)
430 std::make_heap(c.begin(), c.end(), comp);
437 : c(__s), comp(__x
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_queue.h 390 _Compare comp; member in class:priority_queue
400 : c(__s), comp(__x)
401 { std::make_heap(c.begin(), c.end(), comp); }
406 : c(__s), comp(__x)
407 { std::make_heap(c.begin(), c.end(), comp); }
412 : c(std::move(__s)), comp(__x)
413 { std::make_heap(c.begin(), c.end(), comp); }
436 : c(__s), comp(__x)
440 std::make_heap(c.begin(), c.end(), comp);
447 : c(__s), comp(__x
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_queue.h 390 _Compare comp; member in class:priority_queue
400 : c(__s), comp(__x)
401 { std::make_heap(c.begin(), c.end(), comp); }
406 : c(__s), comp(__x)
407 { std::make_heap(c.begin(), c.end(), comp); }
412 : c(std::move(__s)), comp(__x)
413 { std::make_heap(c.begin(), c.end(), comp); }
436 : c(__s), comp(__x)
440 std::make_heap(c.begin(), c.end(), comp);
447 : c(__s), comp(__x
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_queue.h 390 _Compare comp; member in class:priority_queue
400 : c(__s), comp(__x)
401 { std::make_heap(c.begin(), c.end(), comp); }
406 : c(__s), comp(__x)
407 { std::make_heap(c.begin(), c.end(), comp); }
412 : c(std::move(__s)), comp(__x)
413 { std::make_heap(c.begin(), c.end(), comp); }
436 : c(__s), comp(__x)
440 std::make_heap(c.begin(), c.end(), comp);
447 : c(__s), comp(__x
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_queue.h 390 _Compare comp; member in class:priority_queue
400 : c(__s), comp(__x)
401 { std::make_heap(c.begin(), c.end(), comp); }
406 : c(__s), comp(__x)
407 { std::make_heap(c.begin(), c.end(), comp); }
412 : c(std::move(__s)), comp(__x)
413 { std::make_heap(c.begin(), c.end(), comp); }
436 : c(__s), comp(__x)
440 std::make_heap(c.begin(), c.end(), comp);
447 : c(__s), comp(__x
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
EncodedValue.java 94 int comp = getValueType().compareTo(o.getValueType()); local
95 if (comp == 0) {
96 comp = compareValue(o);
98 return comp;
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperChange.java 53 ComponentName comp = (ComponentName)obj; local
59 queryIntent.setPackage(comp.getPackageName());
65 if (ri.serviceInfo.name.equals(comp.getClassName())) {
87 Log.w(TAG, "Not a live wallpaper: " + comp);
  /external/libxslt/libxslt/
templates.h 25 xmlXPathCompExprPtr comp,
47 xmlXPathCompExprPtr comp);
50 xmlXPathCompExprPtr comp,
extra.h 67 xsltStylePreCompPtr comp);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4dec_lib.h 85 void doDCACPrediction(VideoDecData *video, int comp, int16 *q_block,
89 void doDCACPrediction_I(VideoDecData *video, int comp, int16 *q_block);
99 void BlockIDCT_intra(MacroBlock *mblock, PIXEL *c_comp, int comp, int width_offset);
266 void Copy_MB_into_Vop(uint8 *comp, int yChan[][NCOEFF_BLOCK], int width);
267 void Copy_B_into_Vop(uint8 *comp, int cChan[], int width);
268 void PutSKIPPED_MB(uint8 *comp, uint8 *c_prev, int width);
269 void PutSKIPPED_B(uint8 *comp, uint8 *c_prev, int width);
314 int VlcDequantMpegIntraBlock(void *video, int comp, int switched,
316 int VlcDequantMpegInterBlock(void *video, int comp,
319 int VlcDequantH263IntraBlock(VideoDecData *video, int comp, int switched
    [all...]
idct.cpp 122 int *blk, uint8 *comp, int width
255 *comp++ = a;
256 *comp++ = a;
257 *comp++ = a;
258 *comp++ = a;
259 *comp++ = a;
260 *comp++ = a;
261 *comp++ = a;
262 *comp++ = a;
264 comp += offset
    [all...]
  /external/skia/src/xml/
SkJS.cpp 108 char *path, *comp, *full; local
123 for (comp = strtok(path, ":"); comp; comp = strtok(NULL, ":")) {
124 if (*comp != '\0') {
125 full = JS_smprintf("%s/%s", comp, name);
135 if (*comp != '\0')
  /external/openssl/crypto/stack/
stack.c 83 int (*old)(const void *,const void *)=sk->comp;
85 if (sk->comp != c)
87 sk->comp=c;
97 if ((ret=sk_new(sk->comp)) == NULL) goto err;
107 ret->comp=sk->comp;
131 ret->comp=c;
220 if (st->comp == NULL)
229 r=OBJ_bsearch_ex_(&data,st->data,st->num,sizeof(void *),st->comp,
318 /* same comment as in sk_find ... previously st->comp was declare
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationSetItem.java 140 int comp = annotations.length - o.annotations.length; local
141 if (comp == 0) {
143 comp = annotations[i].compareTo(o.annotations[i]);
144 if (comp != 0) {
145 return comp;
149 return comp;
AnnotationItem.java 112 int comp = visibility.value - o.visibility.value; local
113 if (comp == 0) {
114 comp = annotationValue.compareTo(o.annotationValue);
116 return comp;
  /external/openssl/crypto/comp/
comp_err.c 1 /* crypto/comp/comp_err.c */
63 #include <openssl/comp.h>
  /external/webkit/Source/WebCore/bindings/js/
JSInjectedScriptManager.cpp 57 Completion comp = JSMainThreadExecState::evaluate(scriptState, globalObject->globalScopeChain(), sourceCode, globalThisValue); local
58 if (comp.complType() != JSC::Normal && comp.complType() != JSC::ReturnValue)
60 JSValue functionValue = comp.value();
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 2035 Int comp; local
    [all...]

Completed in 563 milliseconds

1 23 4 5 6 7 8 91011>>