HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 301 - 325 of 11184) sorted by null

<<11121314151617181920>>

  /external/skia/src/gpu/gl/
GrGLStencilAttachment.cpp 14 uint64_t size = this->width(); local
15 size *= this->height();
16 size *= fFormat.fTotalBits;
17 size *= SkTMax(1,this->numSamples());
18 return static_cast<size_t>(size / 8);
  /external/skia/src/ports/
SkFontMgr_custom_embedded_factory.cpp 10 struct SkEmbeddedResource { const uint8_t* data; size_t size; }; member in struct:SkEmbeddedResource
  /external/skia/src/utils/
SkMD5.h 27 bool write(const void* buffer, size_t size) override {
28 this->update(reinterpret_cast<const uint8_t*>(buffer), size); variable
  /external/skia/tests/
MallocPixelRefTest.cpp 34 size_t size = info.getSafeSize(rowBytes); local
35 SkAutoDataUnref data(SkData::NewUninitialized(size));
43 size_t size = info.getSafeSize(rowBytes) - 1; local
44 SkAutoDataUnref data(SkData::NewUninitialized(size));
51 size_t size = info.getSafeSize(rowBytes) + 9; local
53 SkAutoMalloc memory(size);
66 void* addr = static_cast<void*>(new uint8_t[size]);
75 SkAutoMalloc memory(size);
88 void* addr = static_cast<void*>(new uint8_t[size]);
96 SkAutoDataUnref data(SkData::NewUninitialized(size));
    [all...]
  /external/strace/tests/
inet-accept-connect-send-recv.c 41 const size_t size = sizeof(data) - 1; local
74 assert(recv(1, buf, sizeof(buf), MSG_WAITALL) == (int) size);
82 assert(send(0, data, size, MSG_DONTROUTE) == (int) size);
pc.c 65 unsigned long size = pagesize << 1; local
73 size += addr - base;
79 addr -= size;
80 size <<= 1;
84 (void) munmap((void *) addr, size);
85 (void) munmap((void *) addr, size);
uid.c 48 int size; local
82 assert((size = syscall(__NR_getgroups, 0, list)) >= 0);
83 assert(list = calloc(size + 1, sizeof(*list)));
84 assert(syscall(__NR_getgroups, size, list) == size);
uid16.c 65 int size; local
96 assert((size = syscall(__NR_getgroups, 0, list)) >= 0);
97 assert(list = calloc(size + 1, sizeof(*list)));
98 assert(syscall(__NR_getgroups, size, list) == size);
  /external/tcpdump/
print-nflog.c 74 uint16_t size; local
105 size = tlv->tlv_length;
106 if (size % 4 != 0)
107 size += 4 - size % 4;
110 if (size < sizeof(nflog_tlv_t)) {
117 if (caplen < size || length < size) {
136 p += size;
137 h_size += size;
    [all...]
  /external/testng/src/main/java/org/testng/
IResultMap.java 21 public int size(); method in interface:IResultMap
  /external/testng/src/test/java/test/
SampleInheritance.java 19 assert m_configurations.size() == 2
20 : "Expected size 2 found " + m_configurations.size();
37 assert m_configurations.size() == 3;
  /external/testng/src/test/java/test/testng285/
TestNG285Test.java 19 Assert.assertEquals(BugBase.m_threadIds.size(), 1);
  /external/toybox/toys/other/
lsmod.c 23 xprintf("%-23s Size Used by\n", "Module");
26 char *name = strtok(toybuf, " "), *size = strtok(NULL, " "), local
32 xprintf("%-19s %8s %s %s\n", name, size, refcnt, users);
  /external/toybox/toys/posix/
cat.c 56 int i, len, size=(toys.optflags & FLAG_u) ? 1 : sizeof(toybuf); local
59 len = read(fd, toybuf, size);
head.c 31 int i, len, lines=TT.lines, size=sizeof(toybuf); local
41 len = read(fd, toybuf, size);
  /external/tpm2/
NV_Read_fp.h 15 UINT16 size; member in struct:__anon23263
30 INT32* size);
33 // and marshals the size of the parameter area (parameter_size) if |tag| ==
34 // TPM_ST_SESSIONS. Returns size of (parameter area + handle area) in bytes.
39 INT32* size);
45 // parameter_size indicating the size of the parameter area. parameter_size
  /external/v8/src/crankshaft/
compilation-phase.cc 23 size_t size = zone()->allocation_size(); local
24 size += info_->zone()->allocation_size() - info_zone_start_allocation_size_;
25 isolate()->GetHStatistics()->SaveTiming(name_, timer_.Elapsed(), size);
  /external/v8/src/runtime/
runtime-generator.cc 26 int size = function->shared()->bytecode_array()->register_count(); local
27 operand_stack = isolate->factory()->NewFixedArray(size);
  /external/valgrind/callgrind/
costs.h 47 Int size; member in struct:_CostChunk
55 ULong* CLG_(get_costarray)(Int size);
  /external/valgrind/memcheck/tests/
sigaltstack.c 17 static const int size = SIGSTKSZ*2; local
21 char *stk = (char *)mmap(0, size, PROT_READ|PROT_WRITE|PROT_EXEC,
25 sigstk.ss_size = size;
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
complex_matrix.h 39 size_t size = this->num_rows() * this->num_columns(); local
40 for (size_t i = 0; i < size; ++i) {
69 size_t size = this->num_rows() * this->num_columns(); local
70 for (size_t i = 0; i < size; ++i) {
  /external/webrtc/webrtc/modules/desktop_capture/win/
cursor_unittest.cc 61 EXPECT_TRUE(DesktopSize(width, height).equals(mouse_shape->image()->size()));
64 int size = width * height; local
65 rtc::scoped_ptr<uint32_t[]> data(new uint32_t[size]);
66 EXPECT_TRUE(GetBitmapBits(scoped_color, size * sizeof(uint32_t), data.get()));
70 size * sizeof(uint32_t)) == 0;
  /external/webrtc/webrtc/modules/video_coding/utility/
moving_average.h 26 int size();
45 if (num_samples > samples_.size())
49 while (num_samples < samples_.size()) {
65 int MovingAverage<T>::size() { function in class:webrtc::MovingAverage
66 return samples_.size();
  /external/zopfli/src/zopfli/
lz77.h 39 Parameter size: The size of both the litlens and dists arrays.
48 size_t size; member in struct:ZopfliLZ77Store
82 size: size of the data
93 size_t pos, size_t size, size_t limit,
109 ll_count: count of each lit/len symbol, must have size 288 (see deflate
111 d_count: count of each dist symbol, must have size 32 (see deflate standard)
  /frameworks/av/drm/mediadrm/plugins/clearkey/
CryptoFactory.cpp 39 const void* data, size_t size,
47 sessionId.appendArray(reinterpret_cast<const uint8_t*>(data), size); local

Completed in 697 milliseconds

<<11121314151617181920>>