Home
last modified time | relevance | path

Searched refs:osize (Results 1 – 17 of 17) sorted by relevance

/external/skia/third_party/lua/src/
Dlmem.c75 void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) { in luaM_realloc_() argument
78 size_t realosize = (block) ? osize : 0; in luaM_realloc_()
84 newblock = (*g->frealloc)(g->ud, block, osize, nsize); in luaM_realloc_()
90 newblock = (*g->frealloc)(g->ud, block, osize, nsize); /* try again */ in luaM_realloc_()
Dlauxlib.c919 static void *l_alloc (void *ud, void *ptr, size_t osize, size_t nsize) { in l_alloc() argument
920 (void)ud; (void)osize; /* not used */ in l_alloc()
Dlua.h70 typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize);
/external/syslinux/com32/lua/src/
Dlmem.c75 void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) { in luaM_realloc_() argument
78 size_t realosize = (block) ? osize : 0; in luaM_realloc_()
84 newblock = (*g->frealloc)(g->ud, block, osize, nsize); in luaM_realloc_()
90 newblock = (*g->frealloc)(g->ud, block, osize, nsize); /* try again */ in luaM_realloc_()
Dlauxlib.c921 static void *l_alloc (void *ud, void *ptr, size_t osize, size_t nsize) { in l_alloc() argument
922 (void)ud; (void)osize; /* not used */ in l_alloc()
Dlua.h75 typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize);
/external/vboot_reference/utility/
Dbmpblk_util.c102 uint32_t osize; in do_efi_decompress() local
108 r = EfiGetInfo(ibuf, isize, &osize, &ssize); in do_efi_decompress()
123 obuf = malloc(osize); in do_efi_decompress()
126 osize, in do_efi_decompress()
132 r = EfiDecompress(ibuf, isize, obuf, osize, sbuf, ssize); in do_efi_decompress()
150 uint32_t osize; in do_lzma_decompress() local
156 osize = img->original_size; in do_lzma_decompress()
157 obuf = malloc(osize); in do_lzma_decompress()
160 osize, in do_lzma_decompress()
176 stream.avail_out = osize; in do_lzma_decompress()
Defidecompress.c1073 uint32_t ssize=0, osize=0; in main() local
1074 EFI_STATUS r = GetInfo(ibuf, isize, &osize, &ssize); in main()
1082 ssize, osize); in main()
1093 uint8_t *obuf = malloc(osize); in main()
1097 osize, in main()
1103 r = TianoDecompress(ibuf, isize, obuf, osize, sbuf, ssize); in main()
1110 r = EfiDecompress(ibuf, isize, obuf, osize, sbuf, ssize); in main()
1119 printf("Uncompressed %d bytes to %d bytes\n", isize, osize); in main()
1132 if (1 != fwrite(obuf, osize, 1, ofp)) { in main()
1135 osize, in main()
[all …]
Deficompress.c1673 uint32_t osize = isize; in main() local
1674 uint8_t *obuf = malloc(osize); in main()
1678 osize, in main()
1684 EFI_STATUS r = EfiCompress(ibuf, isize, obuf, &osize); in main()
1692 printf("Compressed %d bytes to %d bytes\n", isize, osize); in main()
1705 if (1 != fwrite(obuf, osize, 1, ofp)) { in main()
1708 osize, in main()
1713 printf("wrote %d bytes to %s\n", osize, outfile); in main()
/external/webrtc/talk/session/media/
Dyuvscaler_unittest.cc103 size_t osize = I420_SIZE(ow, oh); in TestScale() local
107 new uint8_t[osize + kAlignment + memoffset]()); in TestScale()
109 new uint8_t[osize + kAlignment + memoffset]()); in TestScale()
124 memset(obuf, 100, osize); // Output set to something wrong for now. in TestScale()
125 memset(xbuf, 213, osize); // Expected result. in TestScale()
130 FlushCache(obuf, osize); in TestScale()
131 FlushCache(xbuf, osize); in TestScale()
144 FlushCache(obuf, osize); in TestScale()
168 double sse = cricket::ComputeSumSquareError(obuf, xbuf, osize); in TestScale()
169 *error = sse / osize; // Mean Squared Error. in TestScale()
[all …]
Dplanarfunctions_unittest.cc449 int osize, in IsMemoryEqual() argument
451 double sse = cricket::ComputeSumSquareError(ibuf, obuf, osize); in IsMemoryEqual()
452 double error = sse / osize; // Mean Squared Error. in IsMemoryEqual()
453 double PSNR = cricket::ComputePSNR(sse, osize); in IsMemoryEqual()
455 << " First Diff Byte: " << FindDiff(ibuf, obuf, osize); in IsMemoryEqual()
/external/fio/t/
Daxmap.c25 size_t osize; in test_regular() local
34 osize = size; in test_regular()
61 ff = axmap_next_free(map, osize); in test_regular()
/external/clang/test/CodeGen/
Dms-inline-asm.c316 int olen = 0, osize = 0, otype = 0;
319 __asm mov osize, SIZE arr
/external/openssh/
Dmoduli.c155 u_int32_t osize, u_int32_t ogenerator, BIGNUM * omodulus) in qfileout() argument
167 otype, otests, otries, osize, ogenerator); in qfileout()
/external/mksh/src/
Dmain.c1693 size_t i, j, osize, mask, perturb; in tgrow() local
1701 osize = (size_t)1 << (tp->tshift++); in tgrow()
1702 i = osize << 1; in tgrow()
1717 for (i = 0; i < osize; i++) in tgrow()
/external/icu/icu4c/source/test/cintltst/
Dncnvtst.c80 static void TestWithBufferSize(int32_t osize, int32_t isize);
Dnucnvtst.c39 static void TestNewConvertWithBufferSizes(int32_t osize, int32_t isize) ;