HomeSort by relevance Sort by last modified time
    Searched refs:comp (Results 176 - 200 of 614) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidDeflateTest.java 77 byte[] comp = new byte[128 * 1024 + 512];
84 compress(deflater, input, comp);
85 expand(inflater, comp, (int) deflater.getBytesWritten(), output);
  /art/compiler/optimizing/
code_generator_x86_64.cc 470 void LocationsBuilderX86_64::VisitCondition(HCondition* comp) {
471 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(comp);
474 if (comp->NeedsMaterialization()) {
477 comp->SetLocations(locations);
480 void InstructionCodeGeneratorX86_64::VisitCondition(HCondition* comp) {
481 if (comp->NeedsMaterialization()) {
482 LocationSummary* locations = comp->GetLocations();
493 __ setcc(X86_64Condition(comp->GetCondition()),
494 comp->GetLocations()->Out().AsX86_64().AsCpuRegister());
498 void LocationsBuilderX86_64::VisitEqual(HEqual* comp) {
    [all...]
  /device/moto/shamu/camera/QCamera/stack/mm-jpeg-interface/
Android.mk 33 LOCAL_SHARED_LIBRARIES := libdl libcutils liblog libmmstillomx libimage-jpeg-enc-omx-comp
  /external/chromium_org/third_party/opus/src/win32/
genversion.bat 38 echo n | comp "%1_temp" "%1" > NUL 2> NUL
  /external/libopus/win32/
genversion.bat 38 echo n | comp "%1_temp" "%1" > NUL 2> NUL
  /external/openfst/src/include/fst/
heap.h 57 Heap(Compare comp) : comp_(comp), size_(0) { }
105 // comp object from the heap.
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
heap.h 51 Heap(Compare comp) : comp_(comp), size_(0) { }
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
versionpredicate.py 13 # (comp) (version)
24 comp, verStr = res.groups()
25 return (comp, distutils.version.StrictVersion(verStr))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
versionpredicate.py 13 # (comp) (version)
24 comp, verStr = res.groups()
25 return (comp, distutils.version.StrictVersion(verStr))
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
block_idct.cpp 251 MacroBlock *mblock, PIXEL *c_comp, int comp, int width)
256 int16 *coeff_in = mblock->block[comp];
260 int nz_coefs = mblock->no_coeff[comp];
261 uint8 *bitmapcol = mblock->bitmapcol[comp];
262 uint8 bitmaprow = mblock->bitmaprow[comp];
307 void idct_intra(int *block, uint8 *comp, int width);
311 void idctref_intra(int *block, uint8 *comp, int width);
621 int16 *blk, PIXEL *comp, int width
710 *((int32*)(comp)) = word;
726 *((int32*)(comp + 4)) = word
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir.cpp 751 ir_constant *comp = ir_constant::zero(mem_ctx, type->fields.structure[i].type); local
752 c->components.push_tail(comp);
    [all...]
  /external/mesa3d/src/glsl/
ir.cpp 751 ir_constant *comp = ir_constant::zero(mem_ctx, type->fields.structure[i].type); local
752 c->components.push_tail(comp);
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/source/spreadsortlib/
spreadsort.hpp 75 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min, compare comp)
79 if(comp(*max, *current))
81 else if(comp(*current, *min))
243 , std::vector<size_t> &bin_sizes, right_shift shift, compare comp)
246 find_extremes(first, last, max, min, comp);
281 std::sort(lastPos, bin_cache[u], comp);
283 spread_sort_rec<RandomAccessIter, div_type, data_type, right_shift, compare>(lastPos, bin_cache[u], bin_cache, cache_end, bin_sizes, shift, comp);
347 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift, compare comp)
351 spread_sort_rec<RandomAccessIter, div_type, data_type, right_shift, compare>(first, last, bin_cache, 0, bin_sizes, shift, comp);
378 right_shift shift, compare comp) {
    [all...]
  /external/webrtc/src/system_wrappers/source/spreadsortlib/
spreadsort.hpp 75 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min, compare comp)
79 if(comp(*max, *current))
81 else if(comp(*current, *min))
243 , std::vector<size_t> &bin_sizes, right_shift shift, compare comp)
246 find_extremes(first, last, max, min, comp);
281 std::sort(lastPos, bin_cache[u], comp);
283 spread_sort_rec<RandomAccessIter, div_type, data_type, right_shift, compare>(lastPos, bin_cache[u], bin_cache, cache_end, bin_sizes, shift, comp);
347 spread_sort(RandomAccessIter first, RandomAccessIter last, div_type, data_type, right_shift shift, compare comp)
351 spread_sort_rec<RandomAccessIter, div_type, data_type, right_shift, compare>(first, last, bin_cache, 0, bin_sizes, shift, comp);
378 right_shift shift, compare comp) {
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
caniter.h 196 //Set extract(int comp, String segment, int segmentPos, StringBuffer buffer);
197 Hashtable *extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
198 //Hashtable *extract(UChar32 comp, const UnicodeString &segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
  /external/chromium_org/third_party/icu/source/test/intltest/
canittst.cpp 178 UnicodeString decomp, comp; local
184 Normalizer::compose(s, FALSE, 0, comp, status);
188 if (s == decomp && s == comp) {
199 if (item == comp) gotComp = TRUE;
  /external/chromium_org/third_party/libxml/src/
genUnicode.py 76 for comp in alist:
77 if BlockNames.has_key(comp):
80 for r in BlockNames[comp]:
83 print "Alias %s: %s not in Blocks" % (alias[0], comp)
  /external/chromium_org/third_party/libxml/src/include/libxml/
xpath.h 380 xmlXPathCompExprPtr comp; /* the precompiled expression */ member in struct:_xmlXPathParserContext
525 xmlXPathCompiledEval (xmlXPathCompExprPtr comp,
528 xmlXPathCompiledEvalToBoolean(xmlXPathCompExprPtr comp,
531 xmlXPathFreeCompExpr (xmlXPathCompExprPtr comp);
  /external/chromium_org/third_party/libxslt/libxslt/
extra.c 53 * @comp: precomputed informations
60 xsltStylePreCompPtr comp ATTRIBUTE_UNUSED)
87 if (cur->comp == NULL) {
90 } else if (cur->comp->type == XSLT_FUNC_PARAM) {
92 } else if (cur->comp->type == XSLT_FUNC_VARIABLE) {
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
spl_sqrt_floor_arm.S 11 @ comp.sys.arm a long time ago), so you can use them freely for any purpose.
  /external/icu/icu4c/source/common/unicode/
caniter.h 196 //Set extract(int comp, String segment, int segmentPos, StringBuffer buffer);
197 Hashtable *extract(Hashtable *fillinResult, UChar32 comp, const UChar *segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
198 //Hashtable *extract(UChar32 comp, const UnicodeString &segment, int32_t segLen, int32_t segmentPos, UErrorCode &status);
  /external/icu/icu4c/source/test/intltest/
canittst.cpp 178 UnicodeString decomp, comp; local
184 Normalizer::compose(s, FALSE, 0, comp, status);
188 if (s == decomp && s == comp) {
199 if (item == comp) gotComp = TRUE;
  /external/libcxx/test/containers/container.adaptors/priority.queue/
types.pass.cpp 25 // Compare comp;
37 assert(comp(1, 2));
  /external/libxml2/include/libxml/
xpath.h 382 xmlXPathCompExprPtr comp; /* the precompiled expression */ member in struct:_xmlXPathParserContext
536 xmlXPathCompiledEval (xmlXPathCompExprPtr comp,
539 xmlXPathCompiledEvalToBoolean(xmlXPathCompExprPtr comp,
542 xmlXPathFreeCompExpr (xmlXPathCompExprPtr comp);
  /external/llvm/include/llvm/ADT/
PriorityQueue.h 72 std::make_heap(this->c.begin(), this->c.end(), this->comp);

Completed in 1998 milliseconds

1 2 3 4 5 6 78 91011>>