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

  /external/llvm/include/llvm/Object/
Binary.h 141 std::unique_ptr<T> Bin;
146 OwningBinary(std::unique_ptr<T> Bin, std::unique_ptr<MemoryBuffer> Buf);
157 OwningBinary<T>::OwningBinary(std::unique_ptr<T> Bin,
159 : Bin(std::move(Bin)), Buf(std::move(Buf)) {}
165 : Bin(std::move(Other.Bin)), Buf(std::move(Other.Buf)) {}
169 Bin = std::move(Other.Bin);
177 return std::make_pair(std::move(Bin), std::move(Buf))
    [all...]
  /external/autotest/client/site_tests/kernel_Bootcache/
kernel_Bootcache.py 1 #!/usr/bin/python
8 from autotest_lib.client.bin import utils, test
14 Bin = '/usr/local/opt/punybench/bin/'
25 Prepends the path to the puny benchmark bin.
32 os.path.join(self.Bin, cmd) + ' ' + args)
  /external/libvpx/libvpx/build/make/
ads2armasm_ms.pl 1 #!/usr/bin/env perl
13 use lib $FindBin::Bin;
ads2gas.pl 1 #!/usr/bin/env perl
22 use lib $FindBin::Bin;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
ads2armasm_ms.pl 1 #!/usr/bin/env perl
13 use lib $FindBin::Bin;
ads2gas.pl 1 #!/usr/bin/env perl
22 use lib $FindBin::Bin;
  /external/llvm/lib/Object/
Binary.cpp 88 std::unique_ptr<Binary> &Bin = BinOrErr.get();
90 return OwningBinary<Binary>(std::move(Bin), std::move(Buffer));
  /external/scrypt/lib/crypto/
crypto_scrypt-neon.c 88 blockmix_salsa8(uint8x16_t * Bin, uint8x16_t * Bout, uint8x16_t * X, size_t r)
93 blkcpy(X, &Bin[8 * r - 4], 64);
98 blkxor(X, &Bin[i * 8], 64);
106 blkxor(X, &Bin[i * 8 + 4], 64);
crypto_scrypt-sse.c 143 * blockmix_salsa8(Bin, Bout, X, r):
144 * Compute Bout = BlockMix_{salsa20/8, r}(Bin). The input Bin must be 128r
149 blockmix_salsa8(__m128i * Bin, __m128i * Bout, __m128i * X, size_t r)
154 blkcpy(X, &Bin[8 * r - 4], 64);
159 blkxor(X, &Bin[i * 8], 64);
167 blkxor(X, &Bin[i * 8 + 4], 64);
  /art/compiler/
image_writer.h 153 enum Bin {
184 friend std::ostream& operator<<(std::ostream& stream, const Bin& bin);
221 // We use the lock word to store the bin # and bin index of the object in the image.
227 BinSlot(Bin bin, uint32_t index);
229 // The bin an object belongs to, i.e. regular, class/verified, class/initialized, etc.
230 Bin GetBin() const;
231 // The offset in bytes from the beginning of the bin. Aligned to object size
    [all...]
image_writer.cc 156 // bin size sums being calculated.
341 // The object is already deflated from when we set the bin slot. Just overwrite the lock word.
368 // Will also return true if the bin slot was assigned since we are reusing the lock word.
498 // Likely-to-dirty objects get packed together into the same bin so that
504 Bin bin = kBinRegular; local
509 // Changing the bin of an object is purely a memory-use tuning.
515 // * Dex cache arrays are stored in a special bin. The arrays for each dex cache have
524 // so bin them separately
535 // We assume that "regular" bin objects are highly unlikely to become dirtied
    [all...]
  /external/autotest/client/site_tests/kernel_fs_Punybench/
kernel_fs_Punybench.py 1 #!/usr/bin/python
10 from autotest_lib.client.bin import utils, test
19 Bin = '/usr/local/opt/punybench/bin/'
30 Prepends the path to the puny benchmark bin.
36 os.path.join(self.Bin, cmd) + ' ' + args)
359 if not os.path.exists(self.Bin):
360 raise error.TestFail("%s does not exist" % self.Bin)
  /external/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp 292 Binary *Bin = nullptr;
299 Bin = BinOrErr->getBinary();
304 Bin = I->second->getBinary();
307 assert(Bin != nullptr);
309 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(Bin)) {
328 if (Bin->isObject()) {
329 return cast<ObjectFile>(Bin);
  /external/llvm/lib/ProfileData/
CoverageMappingReader.cpp 445 auto Bin = std::move(BinOrErr.get());
447 if (auto *Universal = dyn_cast<object::MachOUniversalBinary>(Bin.get())) {
454 } else if (isa<object::ObjectFile>(Bin.get())) {
456 OF.reset(cast<object::ObjectFile>(Bin.release()));
  /external/mesa3d/include/VG/
vgext.h 222 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguTransformClipLineNDS(const VGfloat Ain,const VGfloat Bin,const VGfloat Cin,const VGfloat* matrix,const VGboolean inverse,VGfloat* Aout,VGfloat* Bout,VGfloat* Cout);
225 typedef VGUErrorCode (VGU_API_ENTRYP PFNVGUTRANSFORMCLIPLINENDSPROC) (const VGfloat Ain,const VGfloat Bin,const VGfloat Cin,const VGfloat* matrix,const VGboolean inverse,VGfloat* Aout,VGfloat* Bout,VGfloat* Cout);
  /external/llvm/tools/llvm-size/
llvm-size.cpp 424 Binary &Bin = *BinaryOrErr.get().getBinary();
426 if (Archive *a = dyn_cast<Archive>(&Bin)) {
460 dyn_cast<MachOUniversalBinary>(&Bin)) {
684 } else if (ObjectFile *o = dyn_cast<ObjectFile>(&Bin)) {
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp     [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 334 const MCBinaryExpr *Bin = static_cast<const MCBinaryExpr*>(Expr);
335 if (HasSecRelSymbolRef(Bin->getLHS())
336 || HasSecRelSymbolRef(Bin->getRHS())) {
    [all...]
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 500 DISPATCH_STMT(Bin##NAME, BinaryOperator, S);
508 DISPATCH_STMT(Bin##NAME##Assign, CompoundAssignOperator, S);
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]

Completed in 649 milliseconds