/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmFromHlslTests.cpp | 113 vk::Move<vk::VkBuffer> inBuffer = createBuffer(vk, device, &inBufferCreateInfo); in iterate() local 114 de::MovePtr<vk::Allocation> inAllocation = allocator.allocate(getBufferMemoryRequirements(vk, device, *inBuffer), MemoryRequirement::HostVisible); in iterate() 115 VK_CHECK(vk.bindBufferMemory(device, *inBuffer, inAllocation->getMemory(), inAllocation->getOffset())); in iterate() 151 const VkDescriptorBufferInfo inputBufferDescriptorInfo = makeDescriptorBufferInfo(*inBuffer, 0ull, inBufferSizeBytes); in iterate() 183 const VkBufferMemoryBarrier hostWriteBarrier = makeBufferMemoryBarrier(VK_ACCESS_HOST_WRITE_BIT, VK_ACCESS_SHADER_READ_BIT, *inBuffer, 0ull, inBufferSizeBytes); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmFromHlslTests.cpp | 113 vk::Move<vk::VkBuffer> inBuffer = createBuffer(vk, device, &inBufferCreateInfo); in iterate() local 114 de::MovePtr<vk::Allocation> inAllocation = allocator.allocate(getBufferMemoryRequirements(vk, device, *inBuffer), MemoryRequirement::HostVisible); in iterate() 115 VK_CHECK(vk.bindBufferMemory(device, *inBuffer, inAllocation->getMemory(), inAllocation->getOffset())); in iterate() 151 const VkDescriptorBufferInfo inputBufferDescriptorInfo = makeDescriptorBufferInfo(*inBuffer, 0ull, inBufferSizeBytes); in iterate() 183 const VkBufferMemoryBarrier hostWriteBarrier = makeBufferMemoryBarrier(VK_ACCESS_HOST_WRITE_BIT, VK_ACCESS_SHADER_READ_BIT, *inBuffer, 0ull, inBufferSizeBytes); in iterate()
|
/third_party/pulseaudio/sonic/ |
H A D | Main.java | 34 byte inBuffer[] = new byte[bufferSize]; in runSonic() 45 numRead = audioStream.read(inBuffer, 0, bufferSize); in runSonic() 49 sonic.writeBytesToStream(inBuffer, numRead); in runSonic()
|
H A D | main.c | 30 short inBuffer[BUFFER_SIZE], outBuffer[BUFFER_SIZE]; in runSonic() local 40 samplesRead = readFromWaveFile(inFile, inBuffer, BUFFER_SIZE/numChannels); in runSonic() 44 sonicWriteShortToStream(stream, inBuffer, samplesRead); in runSonic()
|
H A D | Sonic.java | 307 byte inBuffer[], in addBytesToInputBuffer() 316 sample = (short)((inBuffer[xByte] & 0xff) | (inBuffer[xByte + 1] << 8)); in addBytesToInputBuffer() 938 byte inBuffer[], in writeBytesToStream() 941 addBytesToInputBuffer(inBuffer, numBytes); in writeBytesToStream() 306 addBytesToInputBuffer( byte inBuffer[], int numBytes) addBytesToInputBuffer() argument 937 writeBytesToStream( byte inBuffer[], int numBytes) writeBytesToStream() argument
|
/third_party/lzma/CPP/7zip/Bundles/LzmaCon/ |
H A D | LzmaAlone.cpp | 551 Byte *inBuffer = NULL;
555 inBuffer = (Byte *)MyAlloc((size_t)inSize);
556 if (!inBuffer)
560 if (ReadStream_FAIL(inStream, inBuffer, inSize) != S_OK)
583 int res = Lzma86_Encode(outBuffer, &outSize, inBuffer, inSize,
596 if (Lzma86_GetUnpackSize(inBuffer, inSize, &outSize64) != 0)
609 int res = Lzma86_Decode(outBuffer, &outSize, inBuffer, &inSize);
624 MyFree(inBuffer);
|
/third_party/skia/src/pdf/ |
H A D | SkDeflate.cpp | 40 unsigned char* inBuffer, in do_deflate() 42 zStream->next_in = inBuffer; in do_deflate() 37 do_deflate(int flush, z_stream* zStream, SkWStream* out, unsigned char* inBuffer, size_t inBufferSize) do_deflate() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
H A D | vktImageAstcDecodeModeTests.cpp | 205 BufferWithMemory inBuffer (vk, device, allocator, compressedBufferCI, MemoryRequirement::HostVisible); in iterate() 221 const Allocation& alloc = inBuffer.getAllocation(); in iterate() 277 inBuffer.get(), 0ull, bufferSizeCompresed); in iterate() 292 vk.cmdCopyBufferToImage(*cmdBuffer, inBuffer.get(), image->get(), VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1u, ©Region); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageAstcDecodeModeTests.cpp | 205 BufferWithMemory inBuffer (vk, device, allocator, compressedBufferCI, MemoryRequirement::HostVisible); in iterate() 221 const Allocation& alloc = inBuffer.getAllocation(); in iterate() 277 inBuffer.get(), 0ull, bufferSizeCompresed); in iterate() 292 vk.cmdCopyBufferToImage(*cmdBuffer, inBuffer.get(), image->get(), VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, 1u, ©Region); in iterate()
|
/third_party/lzma/CPP/Windows/ |
H A D | FileIO.h | 124 bool DeviceIoControl(DWORD controlCode, LPVOID inBuffer, DWORD inSize,
in DeviceIoControl() argument 127 return BOOLToBool(::DeviceIoControl(_handle, controlCode, inBuffer, inSize,
in DeviceIoControl()
|
/third_party/skia/tools/ |
H A D | remote_demo.cpp | 255 auto inBuffer = read_SkData(readFd); in renderer() local 256 if (inBuffer == nullptr) { in renderer()
|
/third_party/backends/backend/ |
H A D | canon_dr.c | 8447 unsigned char * inBuffer = NULL; in do_usb_cmd() local 8576 /* build inBuffer */ in do_usb_cmd() 8577 inBuffer = calloc(inActual,1); in do_usb_cmd() 8578 if(!inBuffer){ in do_usb_cmd() 8584 ret = sanei_usb_read_bulk(s->fd, inBuffer, &inActual); in do_usb_cmd() 8586 hexdump(31, "in: <<", inBuffer, inActual); in do_usb_cmd() 8590 free(inBuffer); in do_usb_cmd() 8595 free(inBuffer); in do_usb_cmd() 8600 free(inBuffer); in do_usb_cmd() 8604 /* note that inBuffer i in do_usb_cmd() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRenderTextureFunctionTests.cpp | 3150 BufferWithMemory inBuffer (vk, device, allocator, bufferCreateInfo, MemoryRequirement::HostVisible); 3154 auto& inAlloc = inBuffer.getAllocation(); 3198 const VkDescriptorBufferInfo inDescriptorInfo = makeDescriptorBufferInfo(*inBuffer, 0ull, bufferSizeBytes);
|