Searched refs:bufSize (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/runtime_core/static_core/libziparchive/ |
H A D | zip_archive.cpp | 145 int ExtractToMemory(ZipArchiveHandle &handle, void *buf, size_t bufSize) in ExtractToMemory() argument 147 int size = unzReadCurrentFile(handle, buf, bufSize); in ExtractToMemory()
|
H A D | zip_archive.h | 160 int ExtractToMemory(ZipArchiveHandle &handle, void *buf, size_t bufSize);
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | number_helper.cpp | 383 int NumberHelper::CustomFcvtHelper(std::string& buf, int bufSize, double valueNumber, int digits, int roundingMode) 388 int result = snprintf_s(&buf[0], bufSize, bufSize, "%.*f", digits, valueNumber); 396 ASSERT(result < bufSize); 400 void NumberHelper::CustomFcvt(std::string& buf, int bufSize, double valueNumber, int digits) 419 CustomFcvtHelper(buf, bufSize, valueNumber, digits, roundingMode);
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | emit.cpp | 622 constexpr int bufSize = 9; in EmitAsmLabel() local 623 char buf[bufSize]; in EmitAsmLabel() 626 int ret1 = snprintf_s(buf, sizeof(buf), bufSize - 1, "%d,%d", (c >> 8) & 0xFF, c & 0xFF); in EmitAsmLabel() 630 buf[bufSize - 1] = '\0'; in EmitAsmLabel() 635 int ret2 = snprintf_s(buf, sizeof(buf), bufSize - 1, ",%d,%d", (c >> 8) & 0xFF, c & 0xFF); in EmitAsmLabel() 639 buf[bufSize - 1] = '\0'; in EmitAsmLabel()
|
Completed in 7 milliseconds