HomeSort by relevance Sort by last modified time
    Searched refs:gather (Results 1 - 25 of 63) sorted by null

1 2 3

  /build/make/core/
product-graph.mk 18 define gather-all-products
52 really_all_products := $(call gather-all-products)
  /tools/test/connectivity/acts/framework/acts/
test_decorators.py 120 def gather(self, *args, **kwargs): member in class:_TestInfoDecoratorFunc
123 function. This will also gather all child info if the underlying func
128 if hasattr(self.func, 'gather'):
129 extras = self.func.gather(*args, **kwargs)
187 def gather(self, *args, **kwargs): member in class:_TestInfoBinding
189 Will gather the target with the bound instance.
191 return self.target.gather(self.instance, *args, **kwargs)
  /build/make/tools/
filter-product-graph.py 14 def gather(included, deps): function
53 included = gather(included, deps)
  /external/skia/src/shaders/
SkImageShader.cpp 303 auto gather = alloc->make<SkJumper_MemoryCtx>(); local
304 gather->pixels = pm.writable_addr(); // Don't worry, we won't write to it.
305 gather->stride = pm.rowBytesAsPixels();
326 case kAlpha_8_SkColorType: p->append(SkRasterPipeline::gather_a8, gather); break;
327 case kGray_8_SkColorType: p->append(SkRasterPipeline::gather_g8, gather); break;
328 case kRGB_565_SkColorType: p->append(SkRasterPipeline::gather_565, gather); break;
329 case kARGB_4444_SkColorType: p->append(SkRasterPipeline::gather_4444, gather); break;
330 case kBGRA_8888_SkColorType: p->append(SkRasterPipeline::gather_bgra, gather); break;
331 case kRGBA_8888_SkColorType: p->append(SkRasterPipeline::gather_8888, gather); break;
332 case kRGBA_F16_SkColorType: p->append(SkRasterPipeline::gather_f16, gather); break
    [all...]
  /external/skia/src/jumper/
SkJumper_stages.cpp 721 r = gather(c->r, (px ) & 0xff);
722 g = gather(c->g, (px >> 8) & 0xff);
723 b = gather(c->b, (px >> 16) & 0xff);
734 r = gather(c->r, expand(R) & 0xff);
735 g = gather(c->g, expand(G) & 0xff);
736 b = gather(c->b, expand(B) & 0xff);
747 r = gather(c->r, expand(R) & 0xff);
748 g = gather(c->g, expand(G) & 0xff);
749 b = gather(c->b, expand(B) & 0xff);
757 r = from_byte(gather(tables->r, round(r, 255.0f)))
    [all...]
SkJumper_vectors.h 45 SI T gather(const T* p, U32 ix) { return p[ix]; } function
106 SI V<T> gather(const T* p, U32 ix) { function
210 SI V<T> gather(const T* p, U32 ix) { function
319 SI V<T> gather(const T* p, U32 ix) { function
324 SI F gather(const float* p, U32 ix) { return _mm256_i32gather_ps (p, ix, 4); } function
325 SI U32 gather(const uint32_t* p, U32 ix) { return _mm256_i32gather_epi32(p, ix, 4); } function
326 SI U64 gather(const uint64_t* p, U32 ix) { function
542 SI V<T> gather(const T* p, U32 ix) { function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_sax.py 453 gather = self.AttrGatherer()
454 parser.setContentHandler(gather)
459 self.verify_empty_attrs(gather._attrs)
463 gather = self.AttrGatherer()
464 parser.setContentHandler(gather)
469 self.verify_attrs_wattr(gather._attrs)
473 gather = self.AttrGatherer()
474 parser.setContentHandler(gather)
479 self.verify_empty_nsattrs(gather._attrs)
483 gather = self.AttrGatherer()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_sax.py 555 gather = self.AttrGatherer()
556 parser.setContentHandler(gather)
561 self.verify_empty_attrs(gather._attrs)
565 gather = self.AttrGatherer()
566 parser.setContentHandler(gather)
571 self.verify_attrs_wattr(gather._attrs)
575 gather = self.AttrGatherer()
576 parser.setContentHandler(gather)
581 self.verify_empty_nsattrs(gather._attrs)
585 gather = self.AttrGatherer(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_sax.py 555 gather = self.AttrGatherer()
556 parser.setContentHandler(gather)
561 self.verify_empty_attrs(gather._attrs)
565 gather = self.AttrGatherer()
566 parser.setContentHandler(gather)
571 self.verify_attrs_wattr(gather._attrs)
575 gather = self.AttrGatherer()
576 parser.setContentHandler(gather)
581 self.verify_empty_nsattrs(gather._attrs)
585 gather = self.AttrGatherer(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sax.py 555 gather = self.AttrGatherer()
556 parser.setContentHandler(gather)
561 self.verify_empty_attrs(gather._attrs)
565 gather = self.AttrGatherer()
566 parser.setContentHandler(gather)
571 self.verify_attrs_wattr(gather._attrs)
575 gather = self.AttrGatherer()
576 parser.setContentHandler(gather)
581 self.verify_empty_nsattrs(gather._attrs)
585 gather = self.AttrGatherer(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sax.py 555 gather = self.AttrGatherer()
556 parser.setContentHandler(gather)
561 self.verify_empty_attrs(gather._attrs)
565 gather = self.AttrGatherer()
566 parser.setContentHandler(gather)
571 self.verify_attrs_wattr(gather._attrs)
575 gather = self.AttrGatherer()
576 parser.setContentHandler(gather)
581 self.verify_empty_nsattrs(gather._attrs)
585 gather = self.AttrGatherer(
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 164 void gather(Instruction *, const ValueVector &);
296 void Scalarizer::gather(Instruction *Op, const ValueVector &CV) { function in class:Scalarizer
393 gather(&I, Res);
423 gather(&SI, Res);
468 gather(&GEPI, Res);
486 gather(&CI, Res);
541 gather(&BCI, Res);
565 gather(&SVI, Res);
590 gather(&PHI, Res);
614 gather(&LI, Res)
    [all...]
  /external/python/cpython2/Lib/test/
test_sax.py 735 gather = self.AttrGatherer()
736 parser.setContentHandler(gather)
741 self.verify_empty_attrs(gather._attrs)
745 gather = self.AttrGatherer()
746 parser.setContentHandler(gather)
751 self.verify_attrs_wattr(gather._attrs)
755 gather = self.AttrGatherer()
756 parser.setContentHandler(gather)
761 self.verify_empty_nsattrs(gather._attrs)
765 gather = self.AttrGatherer(
    [all...]
  /external/swiftshader/src/Renderer/
Sampler.cpp 62 gather = false;
263 gather = enable;
434 if(gather && Surface::componentCount(internalTextureFormat) == 1)
Sampler.hpp 207 bool gather; member in class:sw::Sampler
  /external/llvm/utils/
llvm-compilers-check 328 gather = False
333 self.logger.debug("Stop Gather")
334 gather = False
335 if gather:
338 self.logger.debug("Start Gather")
339 gather = True
  /external/python/cpython2/Lib/curses/
textpad.py 148 def gather(self): member in class:Textbox
175 return self.gather()
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
textpad.py 148 def gather(self): member in class:Textbox
175 return self.gather()
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
textpad.py 148 def gather(self): member in class:Textbox
175 return self.gather()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
textpad.py 148 def gather(self): member in class:Textbox
175 return self.gather()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py 148 def gather(self): member in class:Textbox
175 return self.gather()
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
intermediate.h 758 bool gather; member in struct:glslang::TCrackedTextureOp
789 cracked.gather = false;
889 cracked.gather = true;
893 cracked.gather = true;
898 cracked.gather = true;
    [all...]
  /external/swiftshader/third_party/LLVM/utils/
llvmbuild 372 gather = False
377 self.logger.debug("Stop Gather")
378 gather = False
379 if gather:
382 self.logger.debug("Start Gather")
383 gather = True
  /build/soong/cc/
vndk.go 111 // gather list of vndk-core, vndk-sp, and ll-ndk libs
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
avx-gather.s 1 # Check 32bit AVX gather instructions

Completed in 1523 milliseconds

1 2 3