Home
last modified time | relevance | path

Searched refs:tmpBuffer (Results 1 – 8 of 8) 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/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/skia/src/codec/
DSkWuffsCodec.cpp520 std::unique_ptr<uint8_t[]> tmpBuffer; in onIncrementalDecode() local
522 tmpBuffer.reset(new uint8_t[dstInfo().minRowBytes()]); in onIncrementalDecode()
558 SkASSERT(tmpBuffer.get()); in onIncrementalDecode()
559 fSwizzler->swizzle(tmpBuffer.get(), s); in onIncrementalDecode()
561 const auto* swizzled = SkTAddOffset<uint32_t>(tmpBuffer.get(), in onIncrementalDecode()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiExternalMemoryTests.cpp3262 char tmpBuffer[CMSG_SPACE(sizeof(int))]; in testMemoryFdSendOverSocket() local
3267 msg.msg_control = tmpBuffer; in testMemoryFdSendOverSocket()
3268 msg.msg_controllen = sizeof(tmpBuffer); in testMemoryFdSendOverSocket()
3290 char tmpBuffer[CMSG_SPACE(sizeof(int))]; in testMemoryFdSendOverSocket() local
3296 msg.msg_control = tmpBuffer; in testMemoryFdSendOverSocket()
3297 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()