Home
last modified time | relevance | path

Searched refs:msgBuf (Results 1 – 9 of 9) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Dswr_assert.cpp157 char msgBuf[MAX_MESSAGE_LEN]; in SwrAssert() local
159 sprintf_s(msgBuf, "%s(%d): ASSERT: %s\n", pFileName, lineNum, pExpression); in SwrAssert()
160 msgBuf[MAX_MESSAGE_LEN - 2] = '\n'; in SwrAssert()
161 msgBuf[MAX_MESSAGE_LEN - 1] = 0; in SwrAssert()
162 OutputDebugStringA(msgBuf); in SwrAssert()
164 sprintf_s(msgBuf, "\t%s\n", pFunction); in SwrAssert()
165 msgBuf[MAX_MESSAGE_LEN - 2] = '\n'; in SwrAssert()
166 msgBuf[MAX_MESSAGE_LEN - 1] = 0; in SwrAssert()
167 OutputDebugStringA(msgBuf); in SwrAssert()
175 offset = _vsnprintf_s(msgBuf, sizeof(msgBuf), sizeof(msgBuf), pFmtString, args); in SwrAssert()
[all …]
/third_party/node/test/parallel/
Dtest-dgram-udp6-send-default-host.js35 for (const msgBuf of common.getArrayBufferViews(toSend[0])) {
36 client.send(msgBuf, 0, msgBuf.byteLength, port);
37 totalBytesSent += msgBuf.byteLength;
39 for (const msgBuf of common.getArrayBufferViews(toSend[1])) {
40 client.send(msgBuf, port);
41 totalBytesSent += msgBuf.byteLength;
43 for (const msgBuf of common.getArrayBufferViews(toSend[2])) {
44 client.send([msgBuf], port);
45 totalBytesSent += msgBuf.byteLength;
Dtest-dgram-send-default-host.js32 for (const msgBuf of common.getArrayBufferViews(toSend[0])) {
33 client.send(msgBuf, 0, msgBuf.byteLength, port);
34 totalBytesSent += msgBuf.byteLength;
36 for (const msgBuf of common.getArrayBufferViews(toSend[1])) {
37 client.send(msgBuf, port);
38 totalBytesSent += msgBuf.byteLength;
40 for (const msgBuf of common.getArrayBufferViews(toSend[2])) {
41 client.send([msgBuf], port);
42 totalBytesSent += msgBuf.byteLength;
Dtest-child-process-spawnsync-input.js105 const msgBuf = Buffer.from('hello world'.repeat(8)); constant
106 for (const arrayBufferView of common.getArrayBufferViews(msgBuf)) {
115 assert.deepStrictEqual(ret.stdout, msgBuf);
/third_party/quickjs/
Dmessage_server.cpp120 std::unique_ptr<char[]> msgBuf = std::make_unique<char[]>(msgLen + 1); in ReadMsg() local
121 if (msgBuf == nullptr) { in ReadMsg()
126 int readRet = DBG_SocketRead(client, msgBuf.get(), msgLen); in ReadMsg()
133 msgBuf.get()[msgLen] = '\0'; in ReadMsg()
134 DEBUGGER_LOGI("dbg msg %s", msgBuf.get()); in ReadMsg()
135 std::string message(msgBuf.get()); in ReadMsg()
/third_party/node/test/sequential/
Dtest-child-process-execsync.js71 const msgBuf = Buffer.from(`${msg}\n`); constant
79 assert.strictEqual(ret.length, msgBuf.length);
80 assert.deepStrictEqual(ret, msgBuf);
94 assert.deepStrictEqual(ret, msgBuf);
/third_party/vk-gl-cts/framework/delibs/deutil/
DdeProcess.c74 char msgBuf[256]; in dieLastError() local
76 deSprintf(msgBuf, sizeof(msgBuf), "%s, error %d: %s", message, lastErr, strerror(lastErr)); in dieLastError()
77 die(statusPipe, msgBuf); in dieLastError()
202 char msgBuf[256]; in deProcess_setErrorFromErrno() local
204 deSprintf(msgBuf, sizeof(msgBuf), "%s, error %d: %s", message, lastErr, strerror(lastErr)); in deProcess_setErrorFromErrno()
546 LPSTR msgBuf; in deProcess_setErrorFromWin32() local
554 NULL, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)&msgBuf, 0, DE_NULL) > 0) in deProcess_setErrorFromWin32()
556 deSprintf(errBuf, sizeof(errBuf), "%s, error %d: %s", msg, error, msgBuf); in deProcess_setErrorFromWin32()
557 LocalFree(msgBuf); in deProcess_setErrorFromWin32()
/third_party/vk-gl-cts/execserver/
DxsWin32TestProcess.cpp54 LPSTR msgBuf; in formatErrMsg() local
61 NULL, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)&msgBuf, 0, DE_NULL) > 0) in formatErrMsg()
62 str << msg << ", error " << error << ": " << msgBuf; in formatErrMsg()
/third_party/icu/icu4c/source/test/intltest/
Ditspoof.cpp649 char msgBuf[100]; in testMixedNumbers() local
650 sprintf(msgBuf, "testNum = %d ", testNum); in testMixedNumbers()
662 TEST_ASSERT_MSG((expectedSet.size() > 1) == mixedNumberFailure, msgBuf); in testMixedNumbers()
664 TEST_ASSERT_MSG(expectedSet == *actualSet, msgBuf); in testMixedNumbers()