Searched defs:space (Results 26 - 50 of 152) sorted by relevance

1234567

/external/chromium_org/third_party/libevent/
H A Dbuffer.c140 size_t space; local
145 /* make sure that at least some space is available */
151 space = buf->totallen - used;
158 sz = evutil_vsnprintf(buffer, space, fmt, aq);
164 if ((size_t)sz < space) {
261 /* Expands the available space in the event buffer to at least datlen */
274 * alignment to happen. Afterwards, we have enough space.
381 /* If we don't have FIONREAD, we might waste some space here */
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_query.c102 unsigned space = NVC0_QUERY_ALLOC_SPACE; local
112 space = NVC0_QUERY_ALLOC_SPACE;
116 space = 512;
121 space = 64;
129 space = 32;
132 space = 16;
138 if (!nvc0_query_allocate(nvc0, q, space)) {
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_draw.c45 GLubyte *space = malloc(bytes); local
47 tnl->block[tnl->nr_blocks++] = space;
48 return space;
252 GLboolean *space = (GLboolean *)get_space(ctx, count + CLIPVERTS); local
253 GLboolean *bptr = space;
261 return space;
359 /* user-space elements, or buffer already mapped */
/external/chromium_org/third_party/skia/gm/
H A Dgammatext.cpp46 CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB(); local
48 8, rowBytes, space, BITMAP_INFO_RGB);
49 CFRelease(space);
/external/chromium_org/third_party/skia/src/core/
H A DSkPathRef.cpp323 size_t space = numVbs * sizeof(uint8_t) + pCnt * sizeof (SkPoint); local
324 this->makeSpace(space);
341 fFreeSpace -= space;
393 size_t space = sizeof(uint8_t) + pCnt * sizeof (SkPoint); local
394 this->makeSpace(space);
399 fFreeSpace -= space;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dinternal_logging.cc164 char space[22]; // more than enough for 2^64 in smallest supported base (10) local
165 char* end = space + sizeof(space);
171 } while (num > 0 && pos > space);
H A Dthread_cache.cc472 // Divide available space across threads
474 size_t space = overall_thread_cache_size_ / n; local
477 if (space < kMinThreadCacheSize) space = kMinThreadCacheSize;
478 if (space > kMaxThreadCacheSize) space = kMaxThreadCacheSize;
480 double ratio = space / max<double>(1, per_thread_cache_size_);
491 per_thread_cache_size_ = space;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dinternal_logging.cc163 char space[22]; // more than enough for 2^64 in smallest supported base (10) local
164 char* end = space + sizeof(space);
170 } while (num > 0 && pos > space);
H A Dthread_cache.cc461 // Divide available space across threads
463 size_t space = overall_thread_cache_size_ / n; local
466 if (space < kMinThreadCacheSize) space = kMinThreadCacheSize;
467 if (space > kMaxThreadCacheSize) space = kMaxThreadCacheSize;
469 double ratio = space / max<double>(1, per_thread_cache_size_);
480 per_thread_cache_size_ = space;
/external/chromium_org/v8/src/heap/
H A Dspaces-inl.h32 PageIterator::PageIterator(PagedSpace* space) argument
33 : space_(space),
34 prev_page_(&space->anchor_),
53 NewSpacePageIterator::NewSpacePageIterator(NewSpace* space) argument
54 : prev_page_(NewSpacePage::FromAddress(space->ToSpaceStart())->prev_page()),
55 next_page_(NewSpacePage::FromAddress(space->ToSpaceStart())),
56 last_page_(NewSpacePage::FromLimit(space->ToSpaceEnd())) {}
58 NewSpacePageIterator::NewSpacePageIterator(SemiSpace* space) argument
59 : prev_page_(space->anchor()),
176 // space
[all...]
/external/chromium_org/v8/src/
H A Dstring-stream.h151 int space() const { return capacity_ - length_; } function in class:v8::internal::FINAL
/external/e2fsprogs/lib/quota/
H A Dmkquota.c292 qsize_t space)
301 log_debug("ADD_DATA: Inode: %u, UID/GID: %u/%u, space: %ld", ino,
303 inode_gid(*inode), space);
309 dq->dq_dqb.dqb_curspace += space;
318 qsize_t space)
327 log_debug("SUB_DATA: Inode: %u, UID/GID: %u/%u, space: %ld", ino,
329 inode_gid(*inode), space);
334 dq->dq_dqb.dqb_curspace -= space;
370 qsize_t space; local
395 space
291 quota_data_add(quota_ctx_t qctx, struct ext2_inode *inode, ext2_ino_t ino, qsize_t space) argument
317 quota_data_sub(quota_ctx_t qctx, struct ext2_inode *inode, ext2_ino_t ino, qsize_t space) argument
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_query.c102 unsigned space = NVC0_QUERY_ALLOC_SPACE; local
112 space = NVC0_QUERY_ALLOC_SPACE;
116 space = 512;
121 space = 64;
129 space = 32;
132 space = 16;
138 if (!nvc0_query_allocate(nvc0, q, space)) {
/external/mesa3d/src/mesa/tnl/
H A Dt_draw.c45 GLubyte *space = malloc(bytes); local
47 tnl->block[tnl->nr_blocks++] = space;
48 return space;
252 GLboolean *space = (GLboolean *)get_space(ctx, count + CLIPVERTS); local
253 GLboolean *bptr = space;
261 return space;
359 /* user-space elements, or buffer already mapped */
/external/openssl/crypto/bio/
H A Dbss_bio.c142 * never more than buffer space (size-len) warrants. */
426 * bio_nwrite0: check how much space is available
482 ossl_ssize_t num, space; local
489 space = bio_nwrite0(bio, buf);
490 if (num > space)
491 num = space;
/external/pdfium/fpdfsdk/src/
H A Dfpdf_ext.cpp112 CFX_ByteString space, name; local
114 pElement->GetAttrByIndex(i, space, name, value);
115 if (space == FX_BSTRC("xmlns") && name == FX_BSTRC("adhocwf") && value == L"http://ns.adobe.com/AcrobatAdhocWorkflow/1.0/")
/external/skia/gm/
H A Dgammatext.cpp46 CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB(); local
48 8, rowBytes, space, BITMAP_INFO_RGB);
49 CFRelease(space);
/external/skia/src/core/
H A DSkPathRef.cpp323 size_t space = numVbs * sizeof(uint8_t) + pCnt * sizeof (SkPoint); local
324 this->makeSpace(space);
341 fFreeSpace -= space;
393 size_t space = sizeof(uint8_t) + pCnt * sizeof (SkPoint); local
394 this->makeSpace(space);
399 fFreeSpace -= space;
/external/skia/src/gpu/
H A DGrBufferAllocPool.cpp178 // We could honor the space request using by a partial update of the current
238 // if we locked a vb to satisfy the make space and we're releasing
416 void* space = makeSpace(vertexSize, vertexCount, buffer, startVertex); local
417 if (NULL != space) {
418 memcpy(space,
473 void* space = makeSpace(indexCount, buffer, startIndex); local
474 if (NULL != space) {
475 memcpy(space, indices, sizeof(uint16_t) * indexCount);
/external/stlport/stlport/stl/
H A D_ctype.h42 space = _Locale_SPACE, enumerator in enum:ctype_base::mask
H A D_monetary.h42 enum part {none, space, symbol, sign, value}; enumerator in enum:money_base::part
/external/valgrind/main/include/vki/
H A Dvki-xen-memory.h59 unsigned int space; member in struct:vki_xen_add_to_physmap
/external/chromium_org/gpu/command_buffer/client/
H A Dcmd_buffer_helper.h106 // space to be available. Returns address of space.
129 // Allocate space and advance put_.
130 CommandBufferEntry* space = &entries_[put_]; local
135 return space;
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
H A DCharacterNames.h90 const UChar space = 0x0020; member in namespace:WTF::Unicode
158 using WTF::Unicode::space;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrBufferAllocPool.cpp190 // We could honor the space request using by a partial update of the current
250 // if we locked a vb to satisfy the make space and we're releasing
427 void* space = makeSpace(vertexSize, vertexCount, buffer, startVertex); local
428 if (space) {
429 memcpy(space,
484 void* space = makeSpace(indexCount, buffer, startIndex); local
485 if (space) {
486 memcpy(space, indices, sizeof(uint16_t) * indexCount);

Completed in 7601 milliseconds

1234567