Home
last modified time | relevance | path

Searched refs:ret_count (Results 1 – 8 of 8) sorted by relevance

/external/e2fsprogs/lib/ext2fs/
Dmkjournal.c153 blk64_t *ret_blk, int *ret_count) in ext2fs_zero_blocks2() argument
207 if (ret_count) in ext2fs_zero_blocks2()
208 *ret_count = count; in ext2fs_zero_blocks2()
219 blk_t *ret_blk, int *ret_count) in ext2fs_zero_blocks() argument
224 retval = ext2fs_zero_blocks2(fs, blk, num, &ret_blk2, ret_count); in ext2fs_zero_blocks()
Dext2fs.h1560 blk_t *ret_blk, int *ret_count);
1562 blk64_t *ret_blk, int *ret_count);
/external/pdfium/fpdfsdk/
Dfpdftext.cpp193 int ret_count = byte_str_len / kBytesPerCharacter; in FPDFText_GetText() local
195 ASSERT(ret_count <= char_count + 1); // +1 to account for the NUL terminator. in FPDFText_GetText()
197 return ret_count; in FPDFText_GetText()
/external/mesa3d/src/vulkan/wsi/
Dwsi_common_wayland.c506 uint32_t ret_count; in wsi_wl_swapchain_get_images() local
515 ret_count = chain->image_count; in wsi_wl_swapchain_get_images()
517 ret_count = *pCount; in wsi_wl_swapchain_get_images()
521 for (uint32_t i = 0; i < ret_count; i++) in wsi_wl_swapchain_get_images()
Dwsi_common_x11.c552 uint32_t ret_count; in x11_get_images() local
561 ret_count = chain->image_count; in x11_get_images()
563 ret_count = *pCount; in x11_get_images()
567 for (uint32_t i = 0; i < ret_count; i++) in x11_get_images()
/external/skqp/src/utils/
DSkLua.cpp1420 int ret_count = 1; in lpath_isRect() local
1424 ret_count += 1; in lpath_isRect()
1426 return ret_count; in lpath_isRect()
1441 int ret_count = 1; in lpath_isNestedFillRects() local
1449 ret_count += 4; in lpath_isNestedFillRects()
1451 return ret_count; in lpath_isNestedFillRects()
/external/skia/src/utils/
DSkLua.cpp1420 int ret_count = 1; in lpath_isRect() local
1424 ret_count += 1; in lpath_isRect()
1426 return ret_count; in lpath_isRect()
1441 int ret_count = 1; in lpath_isNestedFillRects() local
1449 ret_count += 4; in lpath_isNestedFillRects()
1451 return ret_count; in lpath_isNestedFillRects()
/external/v8/src/compiler/
Dwasm-compiler.cc2260 size_t ret_count = sig->return_count(); in BuildWasmCall() local
2261 if (ret_count == 0) return call; // No return value. in BuildWasmCall()
2263 *rets = Buffer(ret_count); in BuildWasmCall()
2264 if (ret_count == 1) { in BuildWasmCall()
2269 for (size_t i = 0; i < ret_count; i++) { in BuildWasmCall()