HomeSort by relevance Sort by last modified time
    Searched defs:Size (Results 1 - 25 of 608) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/base/
md5digest.cc 15 size_t Md5Digest::Size() const {
sha1digest.cc 15 size_t Sha1Digest::Size() const {
  /external/clang/lib/AST/
DeclGroup.cpp 24 unsigned Size = sizeof(DeclGroup) + sizeof(Decl*) * NumDecls;
25 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
StmtObjC.cpp 50 unsigned Size =
53 void *Mem = Context.Allocate(Size, llvm::alignOf<ObjCAtTryStmt>());
61 unsigned Size =
63 void *Mem = Context.Allocate(Size, llvm::alignOf<ObjCAtTryStmt>());
StmtCXX.cpp 28 std::size_t Size = sizeof(CXXTryStmt);
29 Size += ((handlers.size() + 1) * sizeof(Stmt *));
31 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
37 std::size_t Size = sizeof(CXXTryStmt);
38 Size += ((numHandlers + 1) * sizeof(Stmt *));
40 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
46 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) {
StmtOpenMP.cpp 21 assert(Clauses.size() == getNumClauses() &&
27 assert(A.size() == getCollapsedNumber() &&
33 assert(A.size() == getCollapsedNumber() && "Number of loop private counters "
40 assert(A.size() == getCollapsedNumber() &&
46 assert(A.size() == getCollapsedNumber() &&
52 assert(A.size() == getCollapsedNumber() &&
60 unsigned Size = llvm::RoundUpToAlignment(sizeof(OMPParallelDirective),
63 C.Allocate(Size + sizeof(OMPClause *) * Clauses.size() + sizeof(Stmt *));
65 new (Mem) OMPParallelDirective(StartLoc, EndLoc, Clauses.size());
    [all...]
  /external/clang/test/CodeGenCXX/
PR24289.cpp 7 __SIZE_TYPE__ Size;
10 : Begin(B), Size(S) {}
  /external/clang/include/clang/Basic/
AllDiagnostics.h 33 enum { Size = SizeOfStr };
38 fieldTy>::Size
  /external/compiler-rt/lib/tsan/rtl/
tsan_ignoreset.cc 37 uptr IgnoreSet::Size() const {
  /external/compiler-rt/test/profile/
instrprof-without-libc.c 28 uint64_t Size = __llvm_profile_get_size_for_buffer();
29 if (Size > MaxSize)
44 if (fwrite(Buffer, 1, Size, File) != Size)
  /external/llvm/lib/Support/
LEB128.cpp 19 /// Utility function to get the size of the ULEB128-encoded value.
21 unsigned Size = 0;
24 Size += sizeof(int8_t);
26 return Size;
29 /// Utility function to get the size of the SLEB128-encoded value.
31 unsigned Size = 0;
39 Size += sizeof(int8_t);
41 return Size;
  /external/sfntly/cpp/src/sfntly/port/
memory_output_stream.cc 68 size_t MemoryOutputStream::Size() {
69 return store_.size();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
Size.java 20 * Simple immutable class for keeping a size.
22 public class Size {
26 public Size(int width, int height) {
  /external/clang/include/clang/Frontend/
LayoutOverrideSource.h 28 /// \brief The size of the record.
29 uint64_t Size;
52 uint64_t &Size, uint64_t &Alignment,
  /external/clang/test/Sema/
offsetof-64.c 5 const unsigned long Size = (1l << 60);
8 char padding[Size];
9 char more_padding[1][Size];
16 char padding[Size][Size][Size]; // expected-error 2{{array is too large}}
  /external/llvm/lib/Analysis/
MemoryLocation.cpp 68 uint64_t Size = UnknownSize;
70 Size = C->getValue().getZExtValue();
77 return MemoryLocation(MTI->getRawSource(), Size, AATags);
81 uint64_t Size = UnknownSize;
83 Size = C->getValue().getZExtValue();
90 return MemoryLocation(MTI->getRawDest(), Size, AATags);
117 // We may be able to produce an exact size for known intrinsics.
  /external/llvm/lib/Target/BPF/MCTargetDesc/
BPFAsmBackend.cpp 72 unsigned Size = Fixup.getKind() == FK_Data_4 ? 4 : 8;
74 for (unsigned i = 0; i != Size; ++i) {
75 unsigned Idx = IsLittleEndian ? i : Size - i;
  /external/mesa3d/src/egl/main/
eglarray.h 44 EGLint Size;
69 _eglFilterArray(_EGLArray *array, void **data, EGLint size,
74 _eglFlattenArray(_EGLArray *array, void *buffer, EGLint elem_size, EGLint size,
81 return (array) ? array->Size : 0;
  /external/sfntly/cpp/src/sfntly/data/
font_data.cc 25 int32_t FontData::Size() const {
26 return std::min<int32_t>(array_->Size() - bound_offset_, bound_length_);
30 if (offset + length > Size() || offset < 0 || length < 0)
39 if (offset > Size() || offset < 0)
  /frameworks/base/core/java/android/annotation/
Size.java 28 * Denotes that the annotated element should have a given size or length.
34 * public void getLocationInWindow(@Size(2) int[] location) {
43 public @interface Size {
44 /** An exact size (or -1 if not specified) */
46 /** A minimum size, inclusive */
48 /** A maximum size, inclusive */
50 /** The size must be a multiple of this factor */
  /frameworks/base/media/mca/filterfw/native/core/
vertex_frame.cpp 28 VertexFrame::VertexFrame(int size)
30 size_(size) {
42 bool VertexFrame::WriteData(const uint8_t* data, int size) {
55 if (first_upload && size == size_)
56 glBufferData(GL_ARRAY_BUFFER, size, data, GL_STATIC_DRAW);
57 else if (!first_upload && size <= size_)
58 glBufferSubData(GL_ARRAY_BUFFER, 0, size, data);
61 "inside the vertex frame (%d bytes)!", size, size_);
69 // Subsequent uploads are now bound to the size given here
70 size_ = size;
    [all...]
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_input.cpp 47 off_t FileWrapperInput::Size() {
55 fprintf(stderr, "Unable to compute file size: %s\n", _name);
in_memory_wrapper_input.cpp 22 InMemoryWrapperInput::InMemoryWrapperInput(const char* buffer, size_t size) :
23 _buffer(buffer), _pos(0), _size(size) {
49 off_t InMemoryWrapperInput::Size() {
  /frameworks/support/annotations/src/android/support/annotation/
Size.java 29 * Denotes that the annotated element should have a given size or length.
35 * public void getLocationInWindow(@Size(2) int[] location) {
42 public @interface Size {
43 /** An exact size (or -1 if not specified) */
45 /** A minimum size, inclusive */
47 /** A maximum size, inclusive */
49 /** The size must be a multiple of this factor */
  /art/runtime/utils/
dex_cache_arrays_layout.h 48 return Size() != 0u;
51 size_t Size() const {

Completed in 489 milliseconds

1 2 3 4 5 6 7 8 91011>>