HomeSort by relevance Sort by last modified time
    Searched refs:size (Results 276 - 300 of 18600) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/resize_policy/
sample_size_policy.hpp 38 * Contains a sample size resize-policy.
44 // A sample size policy.
49 // Size type.
64 // Given a __size size, returns a __size that is larger.
66 get_nearest_larger_size(size_type size) const;
68 // Given a __size size, returns a __size that is smaller.
70 get_nearest_smaller_size(size_type size) const;
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
size_fn_imps.hpp 38 * Contains implementations of cc_ht_map_'s entire container size related
45 size() const function in class:PB_DS_CLASS_C_DEC
52 { return (size() == 0); }
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
info_fn_imps.hpp 45 size() const function in class:PB_DS_CLASS_C_DEC
58 { return (size() == 0); }
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/resize_policy/
sample_size_policy.hpp 38 * Contains a sample size resize-policy.
44 // A sample size policy.
49 // Size type.
64 // Given a __size size, returns a __size that is larger.
66 get_nearest_larger_size(size_type size) const;
68 // Given a __size size, returns a __size that is smaller.
70 get_nearest_smaller_size(size_type size) const;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
size_fn_imps.hpp 38 * Contains implementations of cc_ht_map_'s entire container size related
45 size() const function in class:PB_DS_CLASS_C_DEC
52 { return (size() == 0); }
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
info_fn_imps.hpp 45 size() const function in class:PB_DS_CLASS_C_DEC
58 { return (size() == 0); }
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/resize_policy/
sample_size_policy.hpp 38 * Contains a sample size resize-policy.
44 // A sample size policy.
49 // Size type.
64 // Given a __size size, returns a __size that is larger.
66 get_nearest_larger_size(size_type size) const;
68 // Given a __size size, returns a __size that is smaller.
70 get_nearest_smaller_size(size_type size) const;
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLESbuffer.cpp 19 bool GLESbuffer::setBuffer(GLuint size,GLuint usage,const GLvoid* data) {
20 m_size = size;
26 m_data = new unsigned char[size];
29 memcpy(m_data,data,size);
38 bool GLESbuffer::setSubBuffer(GLint offset,GLuint size,const GLvoid* data) {
39 if(offset + size > m_size) return false;
40 memcpy(m_data+offset,data,size);
41 m_conversionManager.addRange(Range(offset,size));
  /system/core/libsparse/
sparse_crc32.h 19 uint32_t sparse_crc32(uint32_t crc, const void *buf, size_t size);
  /external/compiler-rt/lib/tsan/unit_tests/
tsan_clock_test.cc 22 CHECK_EQ(clk.size(), 0);
24 CHECK_EQ(clk.size(), 1);
27 CHECK_EQ(clk.size(), 4);
40 CHECK_EQ(vector.size(), 0);
41 CHECK_EQ(chunked.size(), 0);
43 CHECK_EQ(vector.size(), 0);
44 CHECK_EQ(chunked.size(), 0);
46 CHECK_EQ(vector.size(), 0);
47 CHECK_EQ(chunked.size(), 0);
49 CHECK_EQ(vector.size(), 0)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
AbstractBoxParser.java 31 * This BoxParser handles the basic stuff like reading size and extracting box type.
40 * Parses the next size and type, creates a box instance and parses the box's content.
52 long size = IsoTypeReader.readUInt32(header); local
54 if (size < 8 && size > 1) {
55 LOG.severe("Plausibility check failed: size < 8 (size = " + size + "). Stop parsing!");
64 if (size == 1) {
68 size = IsoTypeReader.readUInt64(bb)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
FieldList.java 37 * @return the size
39 public int size(); method in interface:FieldList
44 * @param n {@code n >= 0, n < size();} which field
  /external/chromium/net/disk_cache/
file_block.h 14 // stored on a file-block, regardless of the real type or size of the block.
23 // Returns the size of the block;
24 virtual size_t size() const = 0;
  /external/chromium/sdch/open-vcdiff/src/
checksum.h 32 size_t size) {
35 static_cast<uInt>(size));
40 size_t size) {
43 static_cast<uInt>(size));
  /external/clang/test/CodeGenCXX/
2005-02-14-BitFieldOffset.cpp 5 int size; member in struct:QVectorTypedData
  /external/clang/test/SemaCXX/
bitfield-layout.cpp 3 #define CHECK_SIZE(name, size) extern int name##1[sizeof(name) == size ? 1 : -1];
4 #define CHECK_ALIGN(name, size) extern int name##2[__alignof(name) == size ? 1 : -1];
8 char c : 9; // expected-warning {{size of bit-field 'c' (9 bits) exceeds the size of its type; value will be truncated to 8 bits}}
14 char c : 16; // expected-warning {{size of bit-field 'c' (16 bits) exceeds the size of its type; value will be truncated to 8 bits}}
20 char c : 32; // expected-warning {{size of bit-field 'c' (32 bits) exceeds the size of its type; value will be truncated to 8 bits}
    [all...]
  /external/linux-tools-perf/util/
build-id.h 8 char *dso__build_id_filename(struct dso *self, char *bf, size_t size);
  /external/oprofile/libutil++/
growable_vector.h 33 if (index >= container.size())
45 if (index >= container.size())
55 if (rhs.container.size() > container.size())
56 container.resize(rhs.container.size());
58 size_type min_size = min(container.size(), rhs.container.size());
71 if (rhs.container.size() > container.size())
72 container.resize(rhs.container.size());
83 size_type size() const { function in class:growable_vector
    [all...]
  /external/skia/src/gpu/
SkGpuCanvas.cpp 35 bool SkGpuCanvas::getViewport(SkIPoint* size) const {
36 if (size) {
39 size->set(device->width(), device->height());
41 size->set(0, 0);
  /external/valgrind/main/coregrind/m_gdbserver/
regdef.h 32 by the size of a byte (to match the layout of each register in
38 /* The size (in bits) of the value of this register, as transmitted. */
39 int size; member in struct:reg
  /external/webkit/Source/WebCore/css/
CSSImageGeneratorValue.cpp 47 void CSSImageGeneratorValue::addClient(RenderObject* renderer, const IntSize& size)
50 if (!size.isEmpty())
51 m_sizes.add(size);
55 m_clients.add(renderer, SizeCountPair(size, 1));
68 IntSize size = sizeCount.first; local
69 if (!size.isEmpty()) {
70 m_sizes.remove(size);
71 if (!m_sizes.contains(size))
72 m_images.remove(size);
81 Image* CSSImageGeneratorValue::getImage(RenderObject* renderer, const IntSize& size)
    [all...]
  /external/webkit/Source/WebCore/dom/
ClientRectList.cpp 41 m_list.reserveInitialCapacity(quads.size());
42 for (size_t i = 0; i < quads.size(); ++i)
52 return m_list.size();
57 if (index >= m_list.size()) {
  /external/webkit/Source/WebCore/platform/haiku/
SharedBufferHaiku.cpp 43 off_t size;
44 file.GetSize(&size);
46 Vector<char> buffer(size);
47 file.Read(buffer.data(), buffer.size());
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
DataReference.h 44 DataReference(const uint8_t* data, size_t size)
46 , m_size(size)
50 bool isEmpty() const { return size() == 0; }
52 size_t size() const { return m_size; } function in class:CoreIPC::DataReference
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardListItem.cpp 38 size_t size = children.size(); local
39 Vector<RefPtr<APIObject> > vector(size);
40 for (size_t i = 0; i < size; ++i)

Completed in 500 milliseconds

<<11121314151617181920>>