HomeSort by relevance Sort by last modified time
    Searched defs:snprintf (Results 101 - 125 of 138) sorted by null

1 2 3 45 6

  /external/mesa3d/src/compiler/nir/
nir_print.c 34 #if defined(_WIN32) && !defined(snprintf)
35 #define snprintf _snprintf macro
439 snprintf(buf, sizeof(buf), "%u", var->data.location);
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTString.cpp 32 #define snprintf _snprintf macro
    [all...]
  /external/valgrind/coregrind/
m_libcprint.c 738 /* --------- snprintf --------- */
740 /* The return value of VG_(snprintf) and VG_(vsnprintf) differs from
785 UInt VG_(snprintf) ( HChar* buf, Int size, const HChar *format, ... ) function
    [all...]
  /external/vulkan-validation-layers/windowsRuntimeInstaller/
configure_runtime.c 51 #define snprintf _snprintf macro
237 int registry_size = snprintf(NULL, 0, registry_pattern, api_name) + 1;
239 snprintf(registry_key, registry_size, registry_pattern, api_name);
257 int filter_size = snprintf(NULL, 0, pattern, install_path) + 1;
262 snprintf(filter, filter_size, pattern, install_path);
271 int layer_size = snprintf(NULL, 0, layer_pattern, install_path, find_data.cFileName) + 1;
277 snprintf(layer, layer_size, layer_pattern, install_path, find_data.cFileName);
522 int registry_size = snprintf(NULL, 0, pattern, api_name) + 1;
524 snprintf(registry_key, registry_size, pattern, api_name);
634 int filter_size = snprintf(NULL, 0, pattern, path, name, abi_major, extension) + 1
    [all...]
  /hardware/qcom/msm8998/json-c/
json_object.c 41 # define snprintf _snprintf macro
43 # error You do not have snprintf on your system.
604 size = snprintf(buf, sizeof(buf), "NaN");
607 size = snprintf(buf, sizeof(buf), "Infinity");
609 size = snprintf(buf, sizeof(buf), "-Infinity");
611 size = snprintf(buf, sizeof(buf), "%.17g", jso->o.c_double);
  /bionic/libc/stdio/
stdio.cpp 921 int snprintf(char* s, size_t n, const char* fmt, ...) { function
  /external/harfbuzz_ng/src/
hb-private.hh 196 # define snprintf _snprintf macro
  /external/libusb/examples/
xusb.c 37 #define snprintf _snprintf macro
    [all...]
  /external/mdnsresponder/Clients/
dns-sd.c 97 #define snprintf _snprintf macro
674 while (**rd) { p += snprintf(p, end-p, "%.*s.", **rd, *rd+1); *rd += 1 + **rd; }
703 snprintf(rdb, sizeof(rdb), "%d.%d.%d.%d", rd[0], rd[1], rd[2], rd[3]);
715 p += snprintf(p, rdb + sizeof(rdb) - p, " ");
717 p += snprintf(p, rdb + sizeof(rdb) - p, " Ser %d Ref %d Ret %d Exp %d Min %d",
722 snprintf(rdb, sizeof(rdb), "%02X%02X:%02X%02X:%02X%02X:%02X%02X:%02X%02X:%02X%02X:%02X%02X:%02X%02X",
728 p += snprintf(p, rdb + sizeof(rdb) - p, "%d %d %d ", // priority, weight, port
734 default : snprintf(rdb, sizeof(rdb), "%d bytes%s", rdlen, rdlen ? ":" : ""); unknowntype = 1; break;
775 snprintf(addr, sizeof(addr), "%d.%d.%d.%d", digits[0], digits[1], digits[2], digits[3]);
798 snprintf(addr, sizeof(addr), "%d.%d.%d.%d", b[0], b[1], b[2], b[3])
    [all...]
  /external/mdnsresponder/mDNSWindows/mdnsNSP/
mdnsNSP.c 40 #define snprintf _snprintf macro
    [all...]
  /external/pdfium/third_party/libtiff/
tiffiop.h 61 #undef snprintf macro
62 #define snprintf FXSYS_snprintf macro
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 46 // MSVC has only _snprintf, not snprintf.
48 // MinGW has both snprintf and _snprintf, but they appear to be different
51 // snprintf(buffer, 32, "%.*g\n", FLT_DIG, 1.23e10f);
56 #define snprintf _snprintf macro
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Shell/
PVRShell.cpp 41 #define snprintf _snprintf macro
600 snprintf(pszFileName, nFileNameSize, "%s%s%04d.bmp", pszWritePath, fname, nScreenshotCount);
611 snprintf(pszFileName, nFileNameSize, "%s%s0000.bmp", pszWritePath, fname);
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Demangle/
ItaniumDemangle.cpp 25 // snprintf is implemented in VS 2015
27 #define snprintf _snprintf_s macro
142 int n = snprintf(num, sizeof(num), float_data<Float>::spec, value);
    [all...]
  /external/v8/src/wasm/
module-decoder.cc 244 #define snprintf sprintf_s macro
246 snprintf(buf, sizeof(buf) - 1, "%016zx.%s.wasm", hash,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stdio.h 339 int snprintf (char *__stream, size_t __n, const char *__format, ...) function
548 #pragma push_macro("snprintf")
550 # undef snprintf macro
569 int snprintf (char * __restrict__ __stream, size_t __n, const char * __restrict__ __format, ...) function
580 #pragma pop_macro ("snprintf")
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/build-android/generated/include/
vk_struct_string_helper.h 179 // VS2013. However, VS2013 still did not have snprintf(). The following is a
181 #define snprintf _snprintf macro
190 snprintf(str, len, "%spUserData = 0x%p\n%spfnAllocation = 0x%p\n%spfnReallocation = 0x%p\n%spfnFree = 0x%p\n%spfnInternalAllocation = 0x%p\n%spfnInternalFree = 0x%p\n", prefix, (pStruct->pUserData), prefix, (void*)(pStruct->pfnAllocation), prefix, (void*)(pStruct->pfnReallocation), prefix, (void*)(pStruct->pfnFree), prefix, (void*)(pStruct->pfnInternalAllocation), prefix, (void*)(pStruct->pfnInternalFree));
206 snprintf(stp_strs[0], len, " %spNext (0x%p)\n%s", prefix, (void*)pStruct->pNext, tmpStr);
213 snprintf(str, len, "%ssType = %s\n%spNext = 0x%p\n%sflags = %u\n%swindow = 0x%p\n", prefix, string_VkStructureType(pStruct->sType), prefix, (pStruct->pNext), prefix, (pStruct->flags), prefix, (pStruct->window));
236 snprintf(stp_strs[0], len, " %spNext (0x%p)\n%s", prefix, (void*)pStruct->pNext, tmpStr);
243 snprintf(str, len, "%ssType = %s\n%spNext = 0x%p\n%spApplicationName = 0x%p\n%sapplicationVersion = %u\n%spEngineName = 0x%p\n%sengineVersion = %u\n%sapiVersion = %u\n", prefix, string_VkStructureType(pStruct->sType), prefix, (pStruct->pNext), prefix, (pStruct->pApplicationName), prefix, (pStruct->applicationVersion), prefix, (pStruct->pEngineName), prefix, (pStruct->engineVersion), prefix, (pStruct->apiVersion));
259 snprintf(str, len, "%sflags = %u\n%sformat = %s\n%ssamples = %s\n%sloadOp = %s\n%sstoreOp = %s\n%sstencilLoadOp = %s\n%sstencilStoreOp = %s\n%sinitialLayout = %s\n%sfinalLayout = %s\n", prefix, (pStruct->flags), prefix, string_VkFormat(pStruct->format), prefix, string_VkSampleCountFlagBits(pStruct->samples), prefix, string_VkAttachmentLoadOp(pStruct->loadOp), prefix, string_VkAttachmentStoreOp(pStruct->storeOp), prefix, string_VkAttachmentLoadOp(pStruct->stencilLoadOp), prefix, string_VkAttachmentStoreOp(pStruct->stencilStoreOp), prefix, string_VkImageLayout(pStruct->initialLayout), prefix, string_VkImageLayout(pStruct->finalLayout));
268 snprintf(str, len, "%sattachment = %u\n%slayout = %s\n", prefix, (pStruct->attachment), prefix, string_VkImageLayout(pStruct->layout));
284 snprintf(stp_strs[0], len, " %spNext (0x%p)\n%s", prefix, (void*)pStruct->pNext, tmpStr)
    [all...]
vk_struct_string_helper_no_addr.h 179 // VS2013. However, VS2013 still did not have snprintf(). The following is a
181 #define snprintf _snprintf macro
190 snprintf(str, len, "%spUserData = addr\n%spfnAllocation = addr\n%spfnReallocation = addr\n%spfnFree = addr\n%spfnInternalAllocation = addr\n%spfnInternalFree = addr\n", prefix, prefix, prefix, prefix, prefix, prefix);
206 snprintf(stp_strs[0], len, " %spNext (addr)\n%s", prefix, tmpStr);
213 snprintf(str, len, "%ssType = %s\n%spNext = addr\n%sflags = %u\n%swindow = addr\n", prefix, string_VkStructureType(pStruct->sType), prefix, prefix, (pStruct->flags), prefix);
236 snprintf(stp_strs[0], len, " %spNext (addr)\n%s", prefix, tmpStr);
243 snprintf(str, len, "%ssType = %s\n%spNext = addr\n%spApplicationName = addr\n%sapplicationVersion = %u\n%spEngineName = addr\n%sengineVersion = %u\n%sapiVersion = %u\n", prefix, string_VkStructureType(pStruct->sType), prefix, prefix, prefix, (pStruct->applicationVersion), prefix, prefix, (pStruct->engineVersion), prefix, (pStruct->apiVersion));
259 snprintf(str, len, "%sflags = %u\n%sformat = %s\n%ssamples = %s\n%sloadOp = %s\n%sstoreOp = %s\n%sstencilLoadOp = %s\n%sstencilStoreOp = %s\n%sinitialLayout = %s\n%sfinalLayout = %s\n", prefix, (pStruct->flags), prefix, string_VkFormat(pStruct->format), prefix, string_VkSampleCountFlagBits(pStruct->samples), prefix, string_VkAttachmentLoadOp(pStruct->loadOp), prefix, string_VkAttachmentStoreOp(pStruct->storeOp), prefix, string_VkAttachmentLoadOp(pStruct->stencilLoadOp), prefix, string_VkAttachmentStoreOp(pStruct->stencilStoreOp), prefix, string_VkImageLayout(pStruct->initialLayout), prefix, string_VkImageLayout(pStruct->finalLayout));
268 snprintf(str, len, "%sattachment = %u\n%slayout = %s\n", prefix, (pStruct->attachment), prefix, string_VkImageLayout(pStruct->layout));
284 snprintf(stp_strs[0], len, " %spNext (addr)\n%s", prefix, tmpStr)
    [all...]
  /external/google-breakpad/src/processor/
minidump.cc 49 #define snprintf _snprintf macro
    [all...]
  /external/libcxxabi/src/
cxa_demangle.cpp 30 // snprintf is implemented in VS 2015
32 #define snprintf _snprintf_s macro
    [all...]
  /external/libusb/libusb/
libusbi.h 544 #define snprintf _snprintf macro
    [all...]
  /external/libvncserver/libvncclient/
rfbproto.c 73 # define snprintf _snprintf /* MSVC went straight to the underscored syntax */ macro
496 snprintf(tmphost, sizeof(tmphost), "%s:%d", destHost, destPort);
628 snprintf(buf2, sizeof(buf2), (loop>0 ? ", %d" : "%d"), (int)tAuth[loop]);
    [all...]
  /external/libvncserver/libvncserver/
rfbserver.c 94 #define snprintf _snprintf /* Missing in MSVC */ macro
1079 snprintf(buffer,sizeof(buffer)-1, "%s (%s)",
    [all...]
  /external/pdfium/samples/
pdfium_test.cc 60 #define snprintf _snprintf macro
168 snprintf(filename, sizeof(filename), "%s.%d.ppm", pdf_name, num);
197 snprintf(filename, sizeof(filename), "%s.%d.txt", pdf_name, num);
336 snprintf(filename, sizeof(filename), "%s.%d.annot.txt", pdf_name, num);
462 int chars_formatted = snprintf(
500 snprintf(filename, sizeof(filename), "%s.%d.bmp", pdf_name, num);
530 snprintf(filename, sizeof(filename), "%s.%d.emf", pdf_name, num);
564 snprintf(filename, sizeof(filename), "%s.%d.ps", pdf_name, num);
602 snprintf(filename, sizeof(filename), "%s.%d.skp", pdf_name, num);
    [all...]
  /external/pdfium/third_party/lcms/src/
lcms2_internal.h 93 # ifndef snprintf
94 # define snprintf _snprintf macro
    [all...]

Completed in 979 milliseconds

1 2 3 45 6