/third_party/skia/third_party/externals/d3d12allocator/src/ |
H A D | Common.cpp | 102 void PrintMessageV(CONSOLE_COLOR color, const char* format, va_list argList)
in PrintMessageV() argument 104 size_t dstLen = (size_t)::_vscprintf(format, argList);
in PrintMessageV() 111 ::vsprintf_s(bufPtr, dstLen + 1, format, argList);
in PrintMessageV() 116 void PrintMessageV(CONSOLE_COLOR color, const wchar_t* format, va_list argList)
118 size_t dstLen = (size_t)::_vcwprintf(format, argList);
125 ::vswprintf_s(bufPtr, dstLen + 1, format, argList);
132 va_list argList;
133 va_start(argList, format);
134 PrintMessageV(color, format, argList);
135 va_end(argList);
[all...] |
/third_party/bounds_checking_function/src/ |
H A D | snprintf_s.c | 50 va_list argList; in snprintf_s() local 52 va_start(argList, format); in snprintf_s() 53 ret = vsnprintf_s(strDest, destMax, count, format, argList); in snprintf_s() 54 va_end(argList); in snprintf_s() 55 (void)argList; /* To clear e438 last value assigned not used , the compiler will optimize this code */ in snprintf_s() 96 va_list argList; in snprintf_truncated_s() local 98 va_start(argList, format); in snprintf_truncated_s() 99 ret = vsnprintf_truncated_s(strDest, destMax, format, argList); in snprintf_truncated_s() 100 va_end(argList); in snprintf_truncated_s() 101 (void)argList; /* T in snprintf_truncated_s() [all...] |
H A D | scanf_s.c | 42 va_list argList; in scanf_s() local 44 va_start(argList, format); in scanf_s() 45 ret = vscanf_s(format, argList); in scanf_s() 46 va_end(argList); in scanf_s() 47 (void)argList; /* To clear e438 last value assigned not used , the compiler will optimize this code */ in scanf_s()
|
H A D | swscanf_s.c | 45 va_list argList; in swscanf_s() local 47 va_start(argList, format); in swscanf_s() 48 ret = vswscanf_s(buffer, format, argList); in swscanf_s() 49 va_end(argList); in swscanf_s() 50 (void)argList; /* To clear e438 last value assigned not used , the compiler will optimize this code */ in swscanf_s()
|
H A D | wscanf_s.c | 43 va_list argList; in wscanf_s() local 45 va_start(argList, format); in wscanf_s() 46 ret = vwscanf_s(format, argList); in wscanf_s() 47 va_end(argList); in wscanf_s() 48 (void)argList; /* To clear e438 last value assigned not used , the compiler will optimize this code */ in wscanf_s()
|
H A D | fscanf_s.c | 44 va_list argList; in fscanf_s() local 46 va_start(argList, format); in fscanf_s() 47 ret = vfscanf_s(stream, format, argList); in fscanf_s() 48 va_end(argList); in fscanf_s() 49 (void)argList; /* To clear e438 last value assigned not used , the compiler will optimize this code */ in fscanf_s()
|
H A D | fwscanf_s.c | 43 va_list argList; in fwscanf_s() local 45 va_start(argList, format); in fwscanf_s() 46 ret = vfwscanf_s(stream, format, argList); in fwscanf_s() 47 va_end(argList); in fwscanf_s() 48 (void)argList; /* To clear e438 last value assigned not used , the compiler will optimize this code */ in fwscanf_s()
|
H A D | sprintf_s.c | 46 va_list argList; in sprintf_s() local 48 va_start(argList, format); in sprintf_s() 49 ret = vsprintf_s(strDest, destMax, format, argList); in sprintf_s() 50 va_end(argList); in sprintf_s() 51 (void)argList; /* To clear e438 last value assigned not used , the compiler will optimize this code */ in sprintf_s()
|
H A D | sscanf_s.c | 46 va_list argList; in sscanf_s() local 48 va_start(argList, format); in sscanf_s() 49 ret = vsscanf_s(buffer, format, argList); in sscanf_s() 50 va_end(argList); in sscanf_s() 51 (void)argList; /* To clear e438 last value assigned not used , the compiler will optimize this code */ in sscanf_s()
|
H A D | swprintf_s.c | 39 va_list argList; in swprintf_s() local 41 va_start(argList, format); in swprintf_s() 42 ret = vswprintf_s(strDest, destMax, format, argList); in swprintf_s() 43 va_end(argList); in swprintf_s() 44 (void)argList; /* To clear e438 last value assigned not used , the compiler will optimize this code */ in swprintf_s()
|
H A D | vsnprintf_s.c | 32 * argList pointer to list of arguments. 44 int vsnprintf_s(char *strDest, size_t destMax, size_t count, const char *format, va_list argList) in vsnprintf_s() argument 55 retVal = SecVsnprintfImpl(strDest, count + 1, format, argList); in vsnprintf_s() 61 retVal = SecVsnprintfImpl(strDest, destMax, format, argList); in vsnprintf_s() 100 * argList pointer to list of arguments. 112 int vsnprintf_truncated_s(char *strDest, size_t destMax, const char *format, va_list argList) in vsnprintf_truncated_s() argument 122 retVal = SecVsnprintfImpl(strDest, destMax, format, argList); in vsnprintf_truncated_s()
|
H A D | vsscanf_s.c | 27 * The vsscanf_s function is equivalent to sscanf_s, with the variable argument list replaced by argList 38 * argList pointer to list of arguments 41 * argList the converted value stored in user assigned address 49 int vsscanf_s(const char *buffer, const char *format, va_list argList) in vsscanf_s() argument 62 SecClearDestBuf(buffer, format, argList); in vsscanf_s() 73 SecClearDestBuf(buffer, format, argList); in vsscanf_s() 77 retVal = SecInputS(&fStr, format, argList); in vsscanf_s()
|
H A D | vfwscanf_s.c | 33 * argList pointer to list of arguments 36 * argList the converted value stored in user assigned address 44 int vfwscanf_s(FILE *stream, const wchar_t *format, va_list argList) in vfwscanf_s() argument 54 return vwscanf_s(format, argList); in vfwscanf_s() 59 retVal = SecInputSW(&fStr, format, argList); in vfwscanf_s()
|
H A D | vfscanf_s.c | 19 * The vfscanf_s function is equivalent to fscanf_s, with the variable argument list replaced by argList 29 * argList pointer to list of arguments 32 * argList the converted value stored in user assigned address 40 int vfscanf_s(FILE *stream, const char *format, va_list argList) in vfscanf_s() argument 50 return vscanf_s(format, argList); in vfscanf_s() 55 retVal = SecInputS(&fStr, format, argList); in vfscanf_s()
|
H A D | vswscanf_s.c | 43 * argList pointer to list of arguments 46 * argList the converted value stored in user assigned address 54 int vswscanf_s(const wchar_t *buffer, const wchar_t *format, va_list argList) in vswscanf_s() argument 67 SecClearDestBufW(buffer, format, argList); in vswscanf_s() 72 retVal = SecInputSW(&fStr, format, argList); in vswscanf_s()
|
H A D | secinput.h | 113 int SecInputS(SecFileStream *stream, const char *cFormat, va_list argList); 114 void SecClearDestBuf(const char *buffer, const char *format, va_list argList); 116 int SecInputSW(SecFileStream *stream, const wchar_t *cFormat, va_list argList); 117 void SecClearDestBufW(const wchar_t *buffer, const wchar_t *format, va_list argList);
|
H A D | vsprintf_s.c | 30 * argList pointer to list of arguments 41 int vsprintf_s(char *strDest, size_t destMax, const char *format, va_list argList) in vsprintf_s() argument 51 retVal = SecVsnprintfImpl(strDest, destMax, format, argList); in vsprintf_s()
|
H A D | vscanf_s.c | 19 * The vscanf_s function is equivalent to scanf_s, with the variable argument list replaced by argList, 28 * argList pointer to list of arguments 31 * argList the converted value stored in user assigned address 39 int vscanf_s(const char *format, va_list argList) argument 45 * The "va_list" has different definition on different platform, so we can't use argList == NULL 47 * such as "argList == NULL" or argList.xxx != NULL or *(size_t *)&argList != 0. 61 retVal = SecInputS(&fStr, format, argList);
|
H A D | vwscanf_s.c | 33 * argList pointer to list of arguments 36 * argList the converted value stored in user assigned address 44 int vwscanf_s(const wchar_t *format, va_list argList) argument 61 retVal = SecInputSW(&fStr, format, argList);
|
H A D | vswprintf_s.c | 29 * argList pointer to list of arguments 40 int vswprintf_s(wchar_t *strDest, size_t destMax, const wchar_t *format, va_list argList) in vswprintf_s() argument 49 retVal = SecVswprintfImpl(strDest, destMax, format, argList); in vswprintf_s()
|
H A D | secureprintoutput.h | 144 int SecVswprintfImpl(wchar_t *string, size_t count, const wchar_t *format, va_list argList); 146 int SecVsnprintfImpl(char *string, size_t count, const char *format, va_list argList);
|
/third_party/bounds_checking_function/include/ |
H A D | securec.h | 227 * Parameter: argList - instead of a variable number of arguments 232 va_list argList) SECUREC_ATTRIBUTE(3, 0); 256 * Parameter: argList - instead of a variable number of arguments 261 va_list argList) SECUREC_ATTRIBUTE(4, 0); 286 * Parameter: argList - instead of a variable number of arguments 291 va_list argList) SECUREC_ATTRIBUTE(3, 0); 318 * Description: The vscanf_s function is equivalent to scanf_s, with the variable argument list replaced by argList 320 * Parameter: argList - instead of a variable number of arguments 323 SECUREC_API int vscanf_s(const char *format, va_list argList); 340 * replaced by argList [all...] |
/third_party/node/lib/internal/test_runner/mock/ |
H A D | mock.js | 374 apply(_fn, thisArg, argList) { 380 result = ReflectApply(fn, thisArg, argList); 387 arguments: argList, 399 construct(target, argList, newTarget) { 405 result = ReflectConstruct(realTarget, argList, newTarget); 412 arguments: argList,
|
/third_party/vk-gl-cts/framework/delibs/deutil/ |
H A D | deProcess.c | 112 char** argList = cmdLine ? (char**)deCalloc(sizeof(char*)*((size_t)cmdLine->numArgs+1)) : DE_NULL; in execProcess() local 114 if (!cmdLine || !argList) in execProcess() 123 argList[argNdx] = cmdLine->args[argNdx]; in execProcess() 124 argList[argNdx] = DE_NULL; /* Terminate with 0. */ in execProcess() 127 if (workingDirectory && beginsWithPath(argList[0], workingDirectory)) in execProcess() 128 stripLeadingPath(argList[0], workingDirectory); in execProcess() 130 execv(argList[0], argList); in execProcess()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/ |
H A D | NamedFunction.java | 42 public String call(String argList) { in call() argument 43 List<String> args = ARG_SPLITTER.splitToList(argList); in call()
|