Searched defs:size (Results 226 - 250 of 7454) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/boringssl/src/crypto/perlasm/
H A Dx86_64-xlate.pl134 sub size {
236 sub size {}
321 sub size {
508 } elsif (!$elf && $dir =~ /\.size/) {
603 /\.size/ && do { if (defined($current_function)) {
889 if ($arg=register->re(\$line)) { opcode->size($arg->size()); }
904 my $sz=opcode->size();
907 $insn = $opcode->out($#args>=1?$args[$#args]->size():$sz);
1049 # .size functio
133 sub size { subroutine
235 sub size {} subroutine
320 sub size { subroutine
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftapi.c46 FT_ULong size,
51 FT_Stream_OpenMemory( stream, base, size );
44 FT_New_Memory_Stream( FT_Library library, FT_Byte* base, FT_ULong size, FT_Stream stream ) argument
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dblock.h24 size_t size() const { return size_; } function in class:leveldb::Block
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_frame_buffers.h23 size_t size; member in struct:InternalFrameBuffer
40 // |min_size| is the minimum size in bytes needed to decode the next frame.
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/
H A Dvpx_frame_buffer.h38 size_t size; /**< Size of data in bytes */ member in struct:vpx_codec_frame_buffer
47 * must zero out all the data allocated. Then the callback must set fb->size
48 * to the allocated size. The application does not need to align the allocated
/external/chromium_org/third_party/lzma_sdk/
H A D7zAlloc.c21 void *SzAlloc(void *p, size_t size) argument
24 if (size == 0)
27 fprintf(stderr, "\nAlloc %10d bytes; count = %10d", size, g_allocCount);
30 return malloc(size);
46 void *SzAllocTemp(void *p, size_t size) argument
49 if (size == 0)
52 fprintf(stderr, "\nAlloc_temp %10d bytes; count = %10d", size, g_allocCountTemp);
55 return HeapAlloc(GetProcessHeap(), 0, size);
58 return malloc(size);
H A D7zCrcOpt.c10 UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table) argument
13 for (; size > 0 && ((unsigned)(ptrdiff_t)p & 3) != 0; size--, p++)
15 for (; size >= 4; size -= 4, p += 4)
24 for (; size > 0; size--, p++)
29 UInt32 MY_FAST_CALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table) argument
31 return CrcUpdateT4(v, data, size, table);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_memory_aligned.h46 os_malloc_aligned(size_t size, size_t alignment) argument
50 ptr = (char *) os_malloc(size + alignment + sizeof(void *));
H A Dos_memory_stdc.h54 os_malloc_aligned(size_t size, size_t alignment) argument
58 if(posix_memalign(&ptr, alignment, size) != 0)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_heap.h33 unsigned size; member in struct:nouveau_heap
40 unsigned size);
46 nouveau_heap_alloc(struct nouveau_heap *heap, unsigned size, void *priv,
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/api/
H A Dplatform.cpp44 size_t size, void *buf, size_t *size_ret) {
50 return string_property(buf, size, size_ret, "FULL_PROFILE");
53 return string_property(buf, size, size_ret,
57 return string_property(buf, size, size_ret, "Default");
60 return string_property(buf, size, size_ret, "Mesa");
63 return string_property(buf, size, size_ret, "");
43 clGetPlatformInfo(cl_platform_id platform, cl_platform_info param_name, size_t size, void *buf, size_t *size_ret) argument
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Du_execmem.c65 * Dispatch stubs are of fixed size and never freed. Thus, we do not need to
122 u_execmem_alloc(unsigned int size) argument
132 if (head + size > EXEC_MAP_SIZE)
135 /* allocation, assumes proper addr and size alignement */
137 head += size;
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprmem.h64 NSPR_API(void *) PR_Malloc(PRUint32 size); variable
68 NSPR_API(void *) PR_Realloc(void *ptr, PRUint32 size);
80 ** PR_NEW() allocates an untyped item of size _size from the heap.
81 ** INPUTS: _size: size in bytes of item to be allocated
103 ** _size: size of node to allocate
114 ** INPUTS: _size: size of node to allocate
/external/chromium_org/third_party/opus/src/celt/
H A Dos_support.h47 static OPUS_INLINE void *opus_alloc (size_t size) argument
49 return malloc(size);
55 static OPUS_INLINE void *opus_alloc_scratch (size_t size) argument
58 return opus_alloc(size);
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream_inl.h48 int size) {
49 if (size < 0) return false; // security: size is often user-supplied
51 if (BufferSize() >= size) {
52 STLStringResizeUninitialized(buffer, size);
54 // requires non-NULL pointers even when size is 0. Hench this check.
55 if (size > 0) {
56 memcpy(string_as_array(buffer), buffer_, size); local
57 Advance(size);
62 return ReadStringFallback(buffer, size);
47 InternalReadStringInline(string* buffer, int size) argument
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/math/
H A Dfont_math.h36 // the same units. So, if the size is given as the number of bytes then the
37 // alignment size must also be specified as byte size to align to.
38 // @param size the size of the data that may need padding
41 static int32_t PaddingRequired(int32_t size, int32_t alignment_size) { argument
42 int32_t padding = alignment_size - (size % alignment_size);
/external/chromium_org/third_party/skia/bench/
H A DBenchLogger.cpp26 void BenchLogger::fileWrite(const char msg[], size_t size) { argument
28 fFileStream->write(msg, size);
H A DMemoryBench.cpp41 size_t size = 0; variable
43 while (size < total) {
45 size += inc;
H A DReadPixBench.cpp30 SkISize size = canvas->getDeviceSize(); variable
32 int offX = (size.width() - kWindowSize) / kNumStepsX;
33 int offY = (size.height() - kWindowSize) / kNumStepsY;
39 canvas->drawCircle(SkIntToScalar(size.width()/2),
40 SkIntToScalar(size.height()/2),
41 SkIntToScalar(size.width()/2),
H A DWritePixelsBench.cpp49 SkISize size = canvas->getDeviceSize(); variable
54 bmp.allocN32Pixels(size.width(), size.height());
/external/chromium_org/third_party/skia/experimental/FileReaderApp/
H A DReaderView.cpp42 int size = ftell(f) * sizeof(char); local
43 if (size <= fFilePos) {
49 int toBeRead = size - fFilePos;
50 if (size > 0 && toBeRead > 0) {
/external/chromium_org/third_party/skia/gm/
H A Ddiscard.cpp45 SkISize size = this->getISize(); variable
46 size.fWidth /= 10;
47 size.fHeight /= 10;
48 SkImageInfo info = SkImageInfo::MakeN32Premul(size);
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLStencilBuffer.cpp17 uint64_t size = this->width(); local
18 size *= this->height();
19 size *= fFormat.fTotalBits;
20 size *= SkTMax(1,this->numSamples());
21 return static_cast<size_t>(size / 8);
/external/chromium_org/third_party/skia/src/utils/
H A DSkMD5.h27 virtual bool write(const void* buffer, size_t size) SK_OVERRIDE {
28 this->update(reinterpret_cast<const uint8_t*>(buffer), size); variable
H A DSkSHA1.h27 virtual bool write(const void* buffer, size_t size) SK_OVERRIDE {
28 update(reinterpret_cast<const uint8_t*>(buffer), size); variable

Completed in 1274 milliseconds

1234567891011>>