Home
last modified time | relevance | path

Searched refs:tmpBuffer (Results 1 – 14 of 14) sorted by relevance

/external/mdnsresponder/mDNSWindows/
Dloclibrary.c184 char tmpBuffer[TMP_BUF_SIZE]; in PathForResourceWithPathA() local
188 snprintf(tmpBuffer, MAX_PATH, "%s.Resources\\%s", path, nm); in PathForResourceWithPathA()
190 if (!PathFileExistsA(tmpBuffer)) { in PathForResourceWithPathA()
197 snprintf(tmpBuffer, TMP_BUF_SIZE, in PathForResourceWithPathA()
200 if (PathFileExistsA(tmpBuffer)) { in PathForResourceWithPathA()
201 snprintf(tmpBuffer, TMP_BUF_SIZE, "%s\\%s", tmpBuffer, nm); in PathForResourceWithPathA()
203 if (!PathFileExistsA(tmpBuffer)) return 0; in PathForResourceWithPathA()
205 strncpy(locFile, tmpBuffer, locFileLen); in PathForResourceWithPathA()
210 snprintf(tmpBuffer, TMP_BUF_SIZE, "%s.Resources\\%s.lproj\\%s", in PathForResourceWithPathA()
214 if (!PathFileExistsA(tmpBuffer)) return 0; in PathForResourceWithPathA()
[all …]
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/cpio/
DCpioArchiveInputStream.java361 final byte tmpBuffer[] = new byte[length]; in readAsciiLong()
362 readFully(tmpBuffer, 0, tmpBuffer.length); in readAsciiLong()
363 return Long.parseLong(ArchiveUtils.toAsciiString(tmpBuffer), radix); in readAsciiLong()
461 final byte tmpBuffer[] = new byte[length - 1]; in readCString()
462 readFully(tmpBuffer, 0, tmpBuffer.length); in readCString()
464 return zipEncoding.decode(tmpBuffer); in readCString()
/external/OpenCL-CTS/test_conformance/spirv_new/
Dmain.cpp43 std::vector<char> tmpBuffer(0); in readBinary() local
47 tmpBuffer.resize(size); in readBinary()
49 file.read(&tmpBuffer[0], size); in readBinary()
55 std::vector<unsigned char> result(tmpBuffer.begin(), tmpBuffer.end()); in readBinary()
/external/OpenCL-CTS/test_conformance/vectors/
Dtest_vec_align.cpp85 char tmpBuffer[2048]; in test_vec_internal() local
113 doReplace(tmpBuffer, 2048, pattern, ".PRAGMA.", in test_vec_internal()
125 doReplace(tmpBuffer, 2048, pattern, ".PRAGMA.", " ", ".STATE.", in test_vec_internal()
140 doReplace(srcBuffer, 2048, tmpBuffer, ".TYPE.", in test_vec_internal()
/external/webrtc/sdk/objc/components/video_frame_buffer/
DRTCCVPixelBuffer.mm124 withTempBuffer:(nullable uint8_t*)tmpBuffer {
137 RTC_DCHECK(tmpBuffer);
139 [self cropAndScaleNV12To:outputPixelBuffer withTempBuffer:tmpBuffer];
267 - (void)cropAndScaleNV12To:(CVPixelBufferRef)outputPixelBuffer withTempBuffer:(uint8_t*)tmpBuffer {
293 webrtc::NV12Scale(tmpBuffer,
DRTCCVPixelBuffer.h48 withTempBuffer:(nullable uint8_t *)tmpBuffer;
/external/adhd/scripts/mic_testing/frontend/
Danalysis.js33 var tmpBuffer = new Float32Array(length);
36 tmpBuffer[i] = buffer[i];
39 tmpBuffer[i] = 0;
42 fft.forward(tmpBuffer);
/external/skqp/src/codec/
DSkWuffsCodec.cpp519 std::unique_ptr<uint8_t[]> tmpBuffer; in onIncrementalDecode() local
521 tmpBuffer.reset(new uint8_t[dstInfo().minRowBytes()]); in onIncrementalDecode()
554 SkASSERT(tmpBuffer.get()); in onIncrementalDecode()
555 fSwizzler->swizzle(tmpBuffer.get(), s); in onIncrementalDecode()
557 const auto* swizzled = SkTAddOffset<uint32_t>(tmpBuffer.get(), in onIncrementalDecode()
/external/webrtc/api/transport/
Dstun.cc1231 ByteBufferWriter tmpBuffer; in CopyStunAttribute() local
1233 tmp_buffer_ptr = &tmpBuffer; in CopyStunAttribute()
/external/llvm-project/mlir/lib/IR/
DAsmPrinter.cpp1025 SmallString<16> tmpBuffer; in uniqueValueName() local
1026 name = sanitizeIdentifier(name, tmpBuffer); in uniqueValueName()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiExternalMemoryTests.cpp3406 char tmpBuffer[CMSG_SPACE(sizeof(int))]; in testMemoryFdSendOverSocket() local
3411 msg.msg_control = tmpBuffer; in testMemoryFdSendOverSocket()
3412 msg.msg_controllen = sizeof(tmpBuffer); in testMemoryFdSendOverSocket()
3434 char tmpBuffer[CMSG_SPACE(sizeof(int))]; in testMemoryFdSendOverSocket() local
3440 msg.msg_control = tmpBuffer; in testMemoryFdSendOverSocket()
3441 msg.msg_controllen = sizeof(tmpBuffer); in testMemoryFdSendOverSocket()
/external/deqp/framework/common/
DtcuAstcUtil.cpp2946 } tmpBuffer; in isValidBlock() local
2948 …mpressResult result = decompressBlock((isSRGB ? (void*)&tmpBuffer.sRGB[0] : (void*)&tmpBuffer.li… in isValidBlock()
/external/clang/lib/Sema/
DSemaLookup.cpp4824 std::string tmpBuffer; in getAsString() local
4825 llvm::raw_string_ostream PrefixOStream(tmpBuffer); in getAsString()
/external/llvm-project/clang/lib/Sema/
DSemaLookup.cpp5139 std::string tmpBuffer; in getAsString() local
5140 llvm::raw_string_ostream PrefixOStream(tmpBuffer); in getAsString()