Searched defs:Size (Results 1 - 25 of 555) sorted by relevance

1234567891011>>

/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_file_util.cc13 int64 FileSystemFileUtil::EmptyFileEnumerator::Size() { function in class:storage::FileSystemFileUtil::EmptyFileEnumerator
/external/llvm/lib/MC/
H A DMCInstrAnalysis.cpp14 uint64_t Size, uint64_t &Target) const {
20 Target = Addr+Size+Imm;
13 evaluateBranch(const MCInst &Inst, uint64_t Addr, uint64_t Size, uint64_t &Target) const argument
/external/llvm/lib/Support/
H A Dcircular_raw_ostream.cpp18 void circular_raw_ostream::write_impl(const char *Ptr, size_t Size) { argument
20 TheStream->write(Ptr, Size);
25 while (Size != 0) {
27 std::min(unsigned(Size), unsigned(BufferSize - (Cur - BufferArray)));
29 Size -= Bytes;
H A DStringRefMemoryObject.cpp22 uint64_t Size,
25 if (Addr >= Base + getExtent() || Offset + Size > getExtent() || Addr < Base)
27 memcpy(Buf, Bytes.data() + Offset, Size);
21 readBytes(uint64_t Addr, uint64_t Size, uint8_t *Buf) const argument
H A Draw_os_ostream.cpp26 void raw_os_ostream::write_impl(const char *Ptr, size_t Size) { argument
27 OS.write(Ptr, Size);
H A DAllocator.cpp37 void PrintRecyclerStats(size_t Size, argument
40 errs() << "Recycler element size: " << Size << '\n'
H A DLEB128.cpp21 unsigned Size = 0; local
24 Size += sizeof(int8_t);
26 return Size;
31 unsigned Size = 0; local
39 Size += sizeof(int8_t);
41 return Size;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
H A DAMDGPUMCAsmInfo.cpp81 AMDGPUMCAsmInfo::getDataASDirective(unsigned int Size, unsigned int AS) const argument
/external/clang/include/clang/Basic/
H A DAllDiagnostics.h33 enum { Size = SizeOfStr }; enumerator in enum:clang::StringSizerHelper::__anon17559
38 fieldTy>::Size
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DAMDGPUMCAsmInfo.cpp81 AMDGPUMCAsmInfo::getDataASDirective(unsigned int Size, unsigned int AS) const argument
/external/chromium_org/ui/gfx/geometry/
H A Dsize.h27 class GFX_EXPORT Size : public SizeBase<Size, int> { class in namespace:gfx
29 Size() : SizeBase<Size, int>(0, 0) {} function in class:gfx::Size
30 Size(int width, int height) : SizeBase<Size, int>(width, height) {} function in class:gfx::Size
32 explicit Size(const CGSize& s);
35 ~Size() {}
38 Size& operator=(const CGSize& s);
54 inline bool operator==(const Size
[all...]
H A Dsize.cc15 template class SizeBase<Size, int>;
18 Size::Size(const CGSize& s) function in class:gfx::Size
19 : SizeBase<Size, int>(s.width, s.height) {
22 Size& Size::operator=(const CGSize& s) {
30 SIZE Size::ToSIZE() const {
37 CGSize Size::ToCGSize() const {
42 std::string Size::ToString() const {
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglarray.h44 EGLint Size; member in struct:_egl_array
81 return (array) ? array->Size : 0;
/external/chromium_org/ui/gfx/image/
H A Dimage_png_rep.cc28 gfx::Size ImagePNGRep::Size() const { function in class:gfx::ImagePNGRep
36 return gfx::Size(0, 0);
38 return gfx::Size(bitmap.width(), bitmap.height());
/external/clang/include/clang/Frontend/
H A DLayoutOverrideSource.h29 uint64_t Size; member in struct:clang::LayoutOverrideSource::Layout
52 uint64_t &Size, uint64_t &Alignment,
/external/clang/lib/AST/
H A DDeclGroup.cpp22 unsigned Size = sizeof(DeclGroup) + sizeof(Decl*) * NumDecls; local
23 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
/external/clang/test/Sema/
H A Doffsetof-64.c5 const unsigned long Size = (1l << 60); variable
8 char padding[Size];
9 char more_padding[1][Size];
16 char padding[Size][Size][Size]; // expected-error 2{{array is too large}}
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_ignoreset.cc37 uptr IgnoreSet::Size() const { function in class:__tsan::IgnoreSet
/external/compiler-rt/test/profile/
H A Dinstrprof-without-libc.c28 uint64_t Size = __llvm_profile_get_size_for_buffer(); local
29 if (Size > MaxSize)
44 if (fwrite(Buffer, 1, Size, File) != Size)
/external/llvm/include/llvm/IR/
H A DMDBuilder.h86 uint64_t Size; member in struct:llvm::MDBuilder::TBAAStructField
88 TBAAStructField(uint64_t Offset, uint64_t Size, MDNode *TBAA) : argument
89 Offset(Offset), Size(Size), TBAA(TBAA) {}
/external/mesa3d/src/egl/main/
H A Deglarray.h44 EGLint Size; member in struct:_egl_array
81 return (array) ? array->Size : 0;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DGeometry.js179 function Size(width, height) class
186 * @param {?Size} size
189 Size.prototype.isEqual = function(size)
195 * @param {!Size|number} size
196 * @return {!Size}
198 Size.prototype.widthToMax = function(size)
200 return new Size(Math.max(this.width, (typeof size === "number" ? size : size.width)), this.height);
204 * @param {!Size|number} size
205 * @return {!Size}
207 Size
[all...]
/external/chromium_org/base/win/
H A Dscoped_hglobal.h28 size_t Size() const { return GlobalSize(glob_); } function in class:base::win::ScopedHGlobal
/external/chromium_org/cc/test/
H A Dordered_texture_map.cc44 size_t OrderedTextureMap::Size() { return ordered_textures_.size(); } function in class:cc::OrderedTextureMap
58 DCHECK(index < Size());
/external/chromium_org/chrome/browser/media_galleries/linux/
H A Dmtp_device_object_enumerator.cc30 int64 MTPDeviceObjectEnumerator::Size() { function in class:MTPDeviceObjectEnumerator

Completed in 423 milliseconds

1234567891011>>