Searched refs:Bytes (Results 51 - 75 of 90) sorted by relevance

1234

/external/clang/include/clang/Lex/
H A DLexer.h572 void SkipBytes(unsigned Bytes, bool StartOfLine);
H A DPreprocessor.h995 /// \param Bytes The number of bytes in the preamble to skip.
999 void setSkipMainFilePreamble(unsigned Bytes, bool StartOfLine) { argument
1000 SkipMainFilePreamble.first = Bytes;
/external/guava/guava-tests/test/com/google/common/io/
H A DByteStreamsTest.java25 import com.google.common.primitives.Bytes;
880 assertEquals(Bytes.asList(expected), Bytes.asList(actual));
/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp184 unsigned Bytes = unsigned(End-Start); local
188 unsigned NumPointerStores = Bytes / MaxIntSize;
191 unsigned NumByteStores = Bytes - NumPointerStores * MaxIntSize;
/external/oprofile/events/x86-64/family10/
H A Dunit_masks224 0x08 32 Bytes Sized Writes
225 0x10 64 Bytes Sized Writes
226 0x20 32 Bytes Sized Reads
/external/llvm/lib/MC/
H A DMCAsmStreamer.cpp289 static inline int64_t truncateToSize(int64_t Value, unsigned Bytes) { argument
290 assert(Bytes && "Invalid size!");
291 return Value & ((uint64_t) (int64_t) -1 >> (64 - Bytes * 8));
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dextension_set.cc1209 HANDLE_TYPE( BYTES, Bytes, string);
1237 HANDLE_TYPE( BYTES, Bytes, *string_value);
1325 HANDLE_TYPE( BYTES, Bytes, string);
1362 HANDLE_TYPE( BYTES, Bytes, *string_value);
H A Dextension_set_heavy.cc435 HANDLE_TYPE( BYTES, Bytes, string);
464 HANDLE_TYPE( BYTES, Bytes, *string_value);
/external/clang/include/clang/AST/
H A DASTContext.h2352 /// @param Bytes The number of bytes to allocate. Calculated by the compiler.
2357 inline void *operator new(size_t Bytes, const clang::ASTContext &C, argument
2359 return C.Allocate(Bytes, Alignment);
2389 /// @param Bytes The number of bytes to allocate. Calculated by the compiler.
2394 inline void *operator new[](size_t Bytes, const clang::ASTContext& C, argument
2396 return C.Allocate(Bytes, Alignment);
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp1353 SmallString<16> Bytes;
1354 raw_svector_ostream S(Bytes);
1359 for (unsigned i = 0, e = Bytes.size(); i != e; ++i)
1360 TableInfo.Table.push_back(Bytes[i]);
/external/protobuf/src/google/protobuf/
H A Dextension_set.cc1166 HANDLE_TYPE( BYTES, Bytes, string);
1194 HANDLE_TYPE( BYTES, Bytes, *string_value);
1304 HANDLE_TYPE( BYTES, Bytes, string);
1341 HANDLE_TYPE( BYTES, Bytes, *string_value);
/external/zlib/src/as400/
H A Dzlib.inc417 D buf 65535 const options(*varsize) Bytes to accumulate
422 D buf 65535 const options(*varsize) Bytes to accumulate
/external/chromium_org/third_party/sqlite/src/src/
H A Dshell.c994 fprintf(pArg->out, "Number of Pcache Overflow Bytes: %d (max %d) bytes\n", iCur, iHiwtr);
1003 fprintf(pArg->out, "Number of Scratch Overflow Bytes: %d (max %d) bytes\n", iCur, iHiwtr);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1746 uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CDS->getType()); local
1748 if (Bytes > 1)
1749 return AP.OutStreamer.EmitFill(Bytes, Value);
1811 uint64_t Bytes = AP.TM.getDataLayout()->getTypeAllocSize(CA->getType()); local
1812 AP.OutStreamer.EmitFill(Bytes, Value);
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp170 void writeBytes(const char *Bytes, int Size) { argument
171 os->write(Bytes, Size);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp3337 StreamingMemoryObject *Bytes = new StreamingMemoryObject(LazyStreamer); local
3338 StreamFile.reset(new BitstreamReader(Bytes));
3342 if (Bytes->readBytes(0, 16, buf) == -1)
3352 Bytes->dropLeadingBytes(bitcodeStart - buf);
3353 Bytes->setKnownObjectSize(bitcodeEnd - bitcodeStart);
/external/llvm/lib/IR/
H A DCore.cpp1349 void LLVMSetAlignment(LLVMValueRef V, unsigned Bytes) { argument
1352 GV->setAlignment(Bytes);
1354 AI->setAlignment(Bytes);
1356 LI->setAlignment(Bytes);
1358 SI->setAlignment(Bytes);
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp1653 unsigned Bytes = 0; local
1657 Value.substr(0, Comma).getAsInteger(10, Bytes) ||
1661 Opts.PrecompiledPreambleBytes.first = Bytes;
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1942 uint64_t Bytes = SizeC->getZExtValue()*CountC->getZExtValue();
1945 if (Bytes == 0)
1950 if (Bytes == 1 && CI->use_empty()) { // fwrite(S,1,1,F) -> fputc(S[0],F)
/external/clang/lib/Lex/
H A DLexer.cpp1351 void Lexer::SkipBytes(unsigned Bytes, bool StartOfLine) { argument
1352 BufferPtr += Bytes;
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-open-type-private.hh530 template <typename Type, int Bytes> struct BEInt;
/external/giflib/
H A Ddgif_lib.c605 return DGifExtensionToGCB(ep->ByteCount, ep->Bytes, GCB);
/external/harfbuzz_ng/src/
H A Dhb-open-type-private.hh530 template <typename Type, int Bytes> struct BEInt;
/external/llvm/include/llvm/IR/
H A DConstants.h542 static Constant *getImpl(StringRef Bytes, Type *Ty);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c910 CAMLprim value llvm_set_alignment(value Bytes, LLVMValueRef Global) { argument
911 LLVMSetAlignment(Global, Int_val(Bytes));

Completed in 760 milliseconds

1234