Searched defs:osize (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlmem.c26 ** void * frealloc (void *ud, void *ptr, size_t osize, size_t nsize);
27 ** (`osize' is the old size, `nsize' is the new size)
75 void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) { argument
78 size_t realosize = (block) ? osize : 0;
84 newblock = (*g->frealloc)(g->ud, block, osize, nsize);
90 newblock = (*g->frealloc)(g->ud, block, osize, nsize); /* try again */
H A Dlauxlib.c919 static void *l_alloc (void *ud, void *ptr, size_t osize, size_t nsize) { argument
920 (void)ud; (void)osize; /* not used */
/external/fio/t/
H A Daxmap.c25 size_t osize; local
34 osize = size;
40 if (lfsr_next(&lfsr, &val, osize)) {
61 ff = axmap_next_free(map, osize);
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dyuvscaler_unittest.cc103 size_t osize = I420_SIZE(ow, oh); local
105 scoped_ptr<uint8[]> obuffer(new uint8[osize + kAlignment + memoffset]());
106 scoped_ptr<uint8[]> xbuffer(new uint8[osize + kAlignment + memoffset]());
121 memset(obuf, 100, osize); // Output set to something wrong for now.
122 memset(xbuf, 213, osize); // Expected result.
127 FlushCache(obuf, osize);
128 FlushCache(xbuf, osize);
141 FlushCache(obuf, osize);
165 double sse = cricket::ComputeSumSquareError(obuf, xbuf, osize);
166 *error = sse / osize; // Mea
[all...]
H A Dplanarfunctions_unittest.cc476 int osize, double average_error) {
477 double sse = cricket::ComputeSumSquareError(ibuf, obuf, osize);
478 double error = sse / osize; // Mean Squared Error.
479 double PSNR = cricket::ComputePSNR(sse, osize);
481 << " First Diff Byte: " << FindDiff(ibuf, obuf, osize);
475 IsMemoryEqual(const uint8* ibuf, const uint8* obuf, int osize, double average_error) argument
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpage_heap.cc441 const size_t osize = Static::sizemap()->class_to_size(span->sizeclass); local
442 r->fraction = (1.0 * osize * span->refcount) / r->length;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpage_heap.cc380 const size_t osize = Static::sizemap()->class_to_size(span->sizeclass); local
381 r->fraction = (1.0 * osize * span->refcount) / r->length;
/external/mksh/src/
H A Dmain.c1661 size_t i, j, osize, mask, perturb; local
1669 osize = (size_t)1 << (tp->tshift++);
1670 i = osize << 1;
1685 for (i = 0; i < osize; i++)

Completed in 728 milliseconds