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

<<41424344454647484950>>

  /external/libhevc/decoder/
ihevcd_job_queue.c 59 * @brief Returns size for job queue context. Does not include job queue buffer
63 * Returns size for job queue context. Does not include job queue buffer
64 * requirements. Buffer size required to store the jobs should be allocated in
67 * @returns Size of the job queue context
75 WORD32 size; local
76 size = sizeof(jobq_t);
77 size += ithread_get_mutex_lock_size();
78 return size;
222 * Size of the total memory allocated
369 * Format/content of the job structure is abstracted and hence size of the jo
    [all...]
  /external/libmicrohttpd/src/microhttpd/
memorypool.c 36 * Align to 2x word size (as GNU libc does).
59 * Size of the pool.
61 size_t size; member in struct:MemoryPool
83 * @param max maximum size of the pool
124 pool->size = max;
143 munmap (pool->memory, pool->size);
154 * Allocate size bytes from the pool.
157 * @param size number of bytes to allocate
161 * @return NULL if the pool cannot support size more
166 size_t size, int from_end
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/hal/hal/
nfc_hal_api.c 157 UINT16 size; local
161 /* NCI payload len + NCI header size */
162 size = p_core_init_rsp_params[2] + NCI_MSG_HDR_SIZE;
165 if ((p_msg = (NFC_HDR *)GKI_getbuf ((UINT16)(size + NFC_HDR_SIZE))) != NULL)
169 p_msg->len = size;
171 memcpy ((UINT8 *)(p_msg + 1) + p_msg->offset, p_core_init_rsp_params, size);
183 ** size, HAL is responsible for fragmenting it, Data packets
184 ** must be of the correct size.
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
RegexCache.java 31 public RegexCache(int size) {
32 cache = new LRUCache<String, Pattern>(size);
52 private int size; field in class:RegexCache.LRUCache
55 public LRUCache(int size) {
56 this.size = size;
57 map = new LinkedHashMap<K, V>(size * 4 / 3 + 1, 0.75f, true) {
60 return size() > LRUCache.this.size;
  /external/libselinux/src/
avc_sidtab.c 19 unsigned int size; local
24 size = strlen(keyp);
25 for (p = keyp; (unsigned int)(p - keyp) < size; p++)
  /external/libunwind/src/mi/
mempool.c 47 sos_alloc (size_t size)
51 size = UNW_ALIGN(size, MAX_ALIGN);
57 pos = fetch_and_add (&sos_memory_freepos, size);
72 sos_memory_freepos += size;
78 assert ((pos+size) <= SOS_MEMORY_SIZE);
96 add_memory (struct mempool *pool, char *mem, size_t size, size_t obj_size)
100 for (obj = mem; obj <= mem + size - obj_size; obj += obj_size)
107 size_t size; local
110 size = pool->chunk_size
    [all...]
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
filelistinfo.h 41 unsigned int size; member in struct:_FileListItemInfo
46 unsigned int size; member in struct:_FileListItemSize
55 int AddFileListItemInfo(FileListInfoPtr fileListInfoPtr, char* name, unsigned int size, unsigned int data);
  /external/libxml2/doc/examples/
testWriter.c 1148 int size; local
    [all...]
  /external/llvm/include/llvm/ADT/
UniqueVector.h 50 Val = static_cast<unsigned>(Vector.size()) + 1;
73 assert(ID-1 < size() && "ID is 0 or out of range!");
89 /// size - Returns the number of entries in the vector.
91 size_t size() const { return Vector.size(); } function in class:llvm::UniqueVector
  /external/llvm/include/llvm/Support/
Memory.h 25 /// and a size. It is used by the Memory class (a friend) as the result of
31 MemoryBlock() : Address(nullptr), Size(0) { }
32 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { }
34 size_t size() const { return Size; } function in class:llvm::sys::MemoryBlock
38 size_t Size; ///< Size, in bytes of the memory area
70 /// system allocation granularity (64K on Windows, page size on Linux)
177 size_t size() const { return M.size(); } function in class:llvm::sys::OwningMemoryBlock
    [all...]
  /external/llvm/lib/IR/
User.cpp 54 size_t size = N * sizeof(Use) + sizeof(Use::UserRef); local
56 size += N * sizeof(BasicBlock *);
57 Use *Begin = static_cast<Use*>(::operator new(size));
117 void *User::allocateFixedOperandUser(size_t Size, unsigned Us,
129 ::operator new(Size + sizeof(Use) * Us + DescBytesToAllocate));
146 void *User::operator new(size_t Size, unsigned Us) {
147 return allocateFixedOperandUser(Size, Us, 0);
150 void *User::operator new(size_t Size, unsigned Us, unsigned DescBytes) {
151 return allocateFixedOperandUser(Size, Us, DescBytes);
154 void *User::operator new(size_t Size) {
    [all...]
  /external/ltrace/
dict.h 30 * same size. */
34 size_t size; member in struct:dict
42 * size KEY_SIZE and values of the size VALUE_SIZE. HASH1 and HASH2
120 * the right size. */
207 * all the table, which is proportional to O(size of table).
value.h 51 size_t size; member in struct:value
103 /* Set the data held by VALP to a buffer of size SIZE. This buffer
105 unsigned char *value_reserve(struct value *valp, size_t size);
132 /* Give a size of given value. Return (size_t)-1 for error. This is
133 * a full size of the value. In particular for arrays, it returns
vect.h 36 size_t size; /* In elements. */ member in struct:vect
41 /* Initialize VEC, which will hold elements of size ELT_SIZE. */
88 assert((ELT_NUM) < (VECP)->size), \
92 VECT_ELEMENT(VECP, ELT_TYPE, (VECP)->size - 1)
128 * holds elements of the right size. */
  /external/lzma/C/
Alloc.c 23 void *MyAlloc(size_t size)
25 if (size == 0)
29 void *p = malloc(size);
30 fprintf(stderr, "\nAlloc %10d bytes, count = %10d, addr = %8X", size, g_allocCount++, (unsigned)p);
34 return malloc(size);
49 void *MidAlloc(size_t size)
51 if (size == 0)
54 fprintf(stderr, "\nAlloc_Mid %10d bytes; count = %10d", size, g_allocCountMid++);
56 return VirtualAlloc(0, size, MEM_COMMIT, PAGE_READWRITE);
82 SIZE_T size = 0; local
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zFolderInStream.h 42 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
49 UInt64 size = 0; local
51 size += Sizes[i];
52 return size;
  /external/lzma/CPP/7zip/UI/Console/
PercentPrinter.cpp 54 unsigned size; local
66 size = (unsigned)strlen(s);
67 s[size++] = c;
68 s[size] = '\0';
71 unsigned extraSize = kPaddingSize + MyMax(size, kPercentsSize);
88 for (; size < extraSize; size++)
  /external/lzma/CPP/7zip/UI/FileManager/
OverwriteDialog.cpp 37 unsigned size = _isBig ? kCurrentFileNameSizeLimit : kCurrentFileNameSizeLimit2; local
38 if (s.Len() > size)
40 s.Delete(size / 2, s.Len() - size);
41 s.Insert(size / 2, L" ... ");
50 sizeString = MyFormatNew(IDS_FILE_SIZE, NumberToString(fileInfo.Size));
  /external/lzma/CPP/Windows/
SecurityUtils.cpp 127 DWORD size = 256; local
128 if (!GetUserNameW(userName, &size))
  /external/lzma/Java/Tukaani/src/
XZSeekEncDemo.java 17 * Arguments: [preset [block size]]
22 * Block size specifies the amount of uncompressed data to store per
45 System.err.println("Block size: " + blockSize + " B");
53 int size = System.in.read(buf, 0, Math.min(buf.length, left)); local
54 if (size == -1)
57 out.write(buf, 0, size);
58 left -= size;
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
DeltaInputStream.java 19 * The delta filter doesn't change the size of the data and thus it
101 int size; local
103 size = in.read(buf, off, len);
109 if (size == -1)
112 delta.decode(buf, off, size);
113 return size;
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_validate.c 59 unsigned size; member in struct:pb_validate
86 if(vl->used == vl->size) {
90 new_size = vl->size * 2;
95 vl->size*sizeof(struct pb_validate_entry),
100 memset(new_entries + vl->size, 0, (new_size - vl->size)*sizeof(struct pb_validate_entry));
102 vl->size = new_size;
183 vl->size = PB_VALIDATE_INITIAL_SIZE;
184 vl->entries = (struct pb_validate_entry *)CALLOC(vl->size, sizeof(struct pb_validate_entry));
  /external/mesa3d/src/glx/
vertarr.c 49 __indirect_glColorPointerEXT(GLint size, GLenum type, GLsizei stride,
53 __indirect_glColorPointer(size, type, stride, pointer);
81 __indirect_glTexCoordPointerEXT(GLint size, GLenum type, GLsizei stride,
85 __indirect_glTexCoordPointer(size, type, stride, pointer);
89 __indirect_glVertexPointerEXT(GLint size, GLenum type, GLsizei stride,
93 __indirect_glVertexPointer(size, type, stride, pointer);
126 * \c size parameter) to the appropriate gl*Pointer function.
131 * True size of a single element in the subarray, as would be passed
135 GLubyte size; member in struct:__anon19549
158 GLint trueStride, size; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv20_state_fb.c 62 size = pitch * height; local
64 if (!nfb->hierz.bo || nfb->hierz.bo->size != size) {
66 nouveau_bo_new(context_dev(ctx), NOUVEAU_BO_VRAM, 0, size, local
  /external/mesa3d/src/mesa/tnl/
t_vb_vertex.c 167 switch (VB->ClipPtr->size) {
189 _mesa_clip_tab[VB->ClipPtr->size]( VB->ClipPtr,
198 _mesa_clip_np_tab[VB->ClipPtr->size]( VB->ClipPtr,
214 usercliptab[VB->ClipPtr->size]( ctx,
237 GLuint size = VB->Size; local
244 _mesa_vector4f_alloc( &store->eye, 0, size, 32 );
245 _mesa_vector4f_alloc( &store->clip, 0, size, 32 );
246 _mesa_vector4f_alloc( &store->proj, 0, size, 32 );
248 store->clipmask = (GLubyte *) _mesa_align_malloc(sizeof(GLubyte)*size, 32 )
    [all...]

Completed in 598 milliseconds

<<41424344454647484950>>