| /third_party/openssl/crypto/sha/asm/ |
| H A D | sha512-c64xplus.pl | 51 ($Xihi,$Xilo)=("A5","B5"); # circular/ring buffer 98 || [A0] SUBAW SP,2,SP ; reserve two words above buffer 104 || [A0] SUBAW SP,2,SP ; reserve two words above buffer 373 ADD FP,B0,SP ; destroy circular buffer
|
| /third_party/skia/src/ports/ |
| H A D | SkFontMgr_android_parser.cpp | 673 // One would assume it would be faster to have a buffer on the stack and call XML_Parse. in parse_config_file() 674 // But XML_Parse will call XML_GetBuffer anyway and memmove the passed buffer into it. in parse_config_file() 676 // In debug, buffer a small odd number of bytes to detect slicing in XML_CharacterDataHandler. in parse_config_file() 680 void* buffer = XML_GetBuffer(parser, bufferSize); in parse_config_file() local 681 if (!buffer) { in parse_config_file() 682 SkDebugf(SK_FONTMGR_ANDROID_PARSER_PREFIX "could not buffer enough to continue\n"); in parse_config_file() 685 size_t len = file.read(buffer, bufferSize); in parse_config_file()
|
| /third_party/skia/src/pdf/ |
| H A D | SkPDFFont.cpp | 164 std::vector<SkUnichar> buffer(typeface->countGlyphs()); in GetUnicodeMap() 165 typeface->getGlyphToUnicodeMap(buffer.data()); in GetUnicodeMap() 166 return *canon->fToUnicodeMap.set(id, std::move(buffer)); in GetUnicodeMap()
|
| /third_party/skia/third_party/externals/dawn/src/dawn_node/tools/src/cmd/run-cts/ |
| H A D | main.go | 415 buffer strings.Builder 427 p.buffer.Write(data) 428 match := portRE.FindStringSubmatch(p.buffer.String())
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
| H A D | Error.h | 822 return reinterpret_cast<storage_type *>(TStorage.buffer); in getStorage() 827 return reinterpret_cast<const storage_type *>(TStorage.buffer); in getStorage() 832 return reinterpret_cast<error_type *>(ErrorStorage.buffer); in getErrorStorage()
|
| /third_party/skia/third_party/externals/icu/source/common/ |
| H A D | uprops.cpp | 273 // needs to release dest's buffer before we look at its contents. in changesWhenNFKC_Casefolded() 274 ReorderingBuffer buffer(*kcf, dest); in changesWhenNFKC_Casefolded() 276 if(buffer.init(5, errorCode)) { in changesWhenNFKC_Casefolded() 279 TRUE, buffer, errorCode); in changesWhenNFKC_Casefolded()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
| H A D | DIE.h | 385 new (reinterpret_cast<void *>(Val.buffer)) T(V); in construct() 388 template <class T> T *get() { return reinterpret_cast<T *>(Val.buffer); } in get() 390 return reinterpret_cast<const T *>(Val.buffer); in get()
|
| /third_party/python/Lib/ |
| H A D | cgi.py | 135 fp : file pointer; default: sys.stdin.buffer 165 fp = fp.buffer 338 fp : file pointer; default: sys.stdin.buffer 414 self.fp = sys.stdin.buffer 417 self.fp = fp.buffer
|
| /third_party/python/Modules/_io/ |
| H A D | winconsoleio.c | 241 Open a console buffer by file descriptor. 382 "Cannot open console input buffer for writing"); in _io__WindowsConsoleIO___init___impl() 387 "Cannot open console output buffer for reading"); in _io__WindowsConsoleIO___init___impl() 452 "Console buffer does not support %s", action); in err_mode() 475 True if console is an input buffer. 490 True if console is an output buffer. 571 /* If we didn't read a full buffer that time, don't try in read_console_w() 575 /* If the buffer ended with a newline, break out */ in read_console_w() 578 /* If the buffer ends with a high surrogate, expand the in read_console_w() 579 buffer an in read_console_w() 734 _io__WindowsConsoleIO_readinto_impl(winconsoleio *self, Py_buffer *buffer) _io__WindowsConsoleIO_readinto_impl() argument [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
| H A D | vktPipelineImage2DViewOf3DTests.cpp | 92 VkBuffer buffer, in copyImageLayerToBuffer() 135 vk.cmdCopyImageToBuffer(cmdBuffer, image, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, buffer, 1u, ®ion); in copyImageLayerToBuffer() 145 buffer, // VkBuffer buffer in copyImageLayerToBuffer() 223 // Copy the result image to a buffer. in runComputePipeline() 304 // Create vertex buffer and fill it with full screen quad. in runGraphicsPipeline() 331 // Copy the result image to a buffer. in runGraphicsPipeline() 366 // Create a buffer to upload the image. in iterate() 370 // Upload target mip level to the input buffer. in iterate() 500 // Prepare the command buffer in iterate() 89 copyImageLayerToBuffer(const DeviceInterface& vk, VkCommandBuffer cmdBuffer, VkImage image, VkBuffer buffer, tcu::IVec2 size, VkAccessFlags srcAccessMask, VkImageLayout oldLayout, deUint32 layerToCopy, uint32_t mipLevel) copyImageLayerToBuffer() argument [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/ |
| H A D | vktRayTracingDirectionTests.cpp | 331 const std::string bufferDecl = "layout(set=0, binding=1, std430) buffer OutBuffer { float val; } outBuffer;\n"; in initPrograms() 422 // Command pool and buffer. in iterate() 451 // Create output buffer. in iterate() 454 BufferWithMemory buffer (vkd, device, alloc, bufferCreateInfo, MemoryRequirement::HostVisible); in iterate() 455 auto& bufferAlloc = buffer.getAllocation(); in iterate() 457 // Fill output buffer with an initial value. in iterate() 503 const auto bufferDescInfo = makeDescriptorBufferInfo(buffer.get(), 0ull, VK_WHOLE_SIZE); in iterate() 592 // Barrier for the output buffer. in iterate() 599 // Read value back from the buffer. in iterate() 742 // Sometimes, update matrix after building the lop level AS and before submitting the command buffer in createDirectionLengthTests() [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
| H A D | vktRenderPassSampleReadTests.cpp | 68 VkBuffer buffer) in createBufferMemory() 70 de::MovePtr<Allocation> allocation (allocator.allocate(getBufferMemoryRequirements(vk, device, buffer), MemoryRequirement::HostVisible)); in createBufferMemory() 71 VK_CHECK(vk.bindBufferMemory(device, buffer, allocation->getMemory(), allocation->getOffset())); in createBufferMemory() 65 createBufferMemory(const DeviceInterface& vk, VkDevice device, Allocator& allocator, VkBuffer buffer) createBufferMemory() argument
|
| H A D | vktRenderPassSparseRenderTargetTests.cpp | 70 VkBuffer buffer) in createBufferMemory() 72 de::MovePtr<Allocation> allocation (allocator.allocate(getBufferMemoryRequirements(vk, device, buffer), MemoryRequirement::HostVisible)); in createBufferMemory() 73 VK_CHECK(vk.bindBufferMemory(device, buffer, allocation->getMemory(), allocation->getOffset())); in createBufferMemory() 584 // record secondary command buffer in iterateInternalDynamicRendering() 601 // record primary command buffer in iterateInternalDynamicRendering() 67 createBufferMemory(const DeviceInterface& vk, VkDevice device, Allocator& allocator, VkBuffer buffer) createBufferMemory() argument
|
| /third_party/vk-gl-cts/modules/egl/ |
| H A D | teglBufferAgeTests.cpp | 200 bool compareToReference (tcu::TestLog& log, const tcu::Surface& reference, const tcu::Surface& buffer, int frameNdx, int bufferNum); 220 // generate sources for vertex and fragment buffer 474 // return indices of frames that have been written to the given buffer 528 if (currentBufferAge > frameNdx || currentBufferAge < 0) // invalid buffer age in iterate() 539 stream << "Fail, EGL_BUFFER_PRESERVED is set to true, but buffer age is: " << currentBufferAge << " (should be 1)"; in iterate() 577 if (currentBufferAge > 0) //buffer contain previous content, need to verify in iterate() 588 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Fail, buffer content is not well preserved when age > 0"); in iterate() 592 else // currentBufferAge == 0, content is undefined, clear the buffer, currentBufferAge < 0 is ruled out at the beginning in iterate() 719 bool compareToReference (tcu::TestLog& log, const tcu::Surface& reference, const tcu::Surface& buffer, int frameNdx, int bufferNum) in compareToReference() argument 722 stream << "FrameNdx = " << frameNdx << ", compare current buffer (numbere in compareToReference() [all...] |
| H A D | teglPartialUpdateTests.cpp | 188 bool compareToReference (tcu::TestLog& log, const tcu::Surface& reference, const tcu::Surface& buffer, int frameNdx, int bufferNum); 208 // generate sources for vertex and fragment buffer 458 // return indices of frames that have been written to the given buffer 526 if (currentBufferAge > frameNdx || currentBufferAge < 0) // invalid buffer age in iterate() 553 // if the buffer age extension is not supported. in iterate() 595 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Fail, claim to support partial_update but buffer age is always 0"); in iterate() 664 bool compareToReference (tcu::TestLog& log, const tcu::Surface& reference, const tcu::Surface& buffer, int frameNdx, int bufferNum) in compareToReference() argument 667 stream << "FrameNdx = " << frameNdx << ", compare current buffer (numbered: " << bufferNum << ") to reference"; in compareToReference() 668 return tcu::intThresholdPositionDeviationCompare(log, "partial update test", stream.str().c_str(), reference.getAccess(), buffer.getAccess(), in compareToReference()
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| H A D | angletypes.cpp | 859 "Output/input masks should fit into 16 bits - 1 bit per draw buffer. The " 860 "corresponding type masks should fit into 32 bits - 2 bits per draw buffer."); 865 // For performance reasons, draw buffer and attribute type validation is done using bit masks. 883 Buffer *buffer = binding.get(); 884 if (buffer == nullptr) 889 const GLsizeiptr bufferSize = static_cast<GLsizeiptr>(buffer->getSize());
|
| /third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/ |
| H A D | api.js | 65 if (!ret.buffer) { 80 onload(data.buffer); 163 onload(data.buffer); 208 if (endPtr - idx > 16 && heapOrArray.buffer && UTF8Decoder) { 301 var buffer, HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32, HEAPF32, HEAPF64; 303 buffer = buf; [all...] |
| /third_party/node/deps/v8/src/execution/riscv64/ |
| H A D | simulator-riscv64.cc | 1648 // Use a reasonably large buffer. in Debug() 1649 v8::base::EmbeddedVector<char, 256> buffer; in Debug() local 1654 dasm.InstructionDecode(buffer, reinterpret_cast<byte*>(sim_->get_pc())); in Debug() 1655 PrintF(" 0x%016" PRIx64 " %s\n", sim_->get_pc(), buffer.begin()); in Debug() 1823 // Use a reasonably large buffer. in Debug() 1824 v8::base::EmbeddedVector<char, 256> buffer; in Debug() local 1861 dasm.InstructionDecode(buffer, cur); in Debug() 1863 buffer.begin()); in Debug() 1941 // Use a reasonably large buffer. in Debug() 1942 v8::base::EmbeddedVector<char, 256> buffer; in Debug() local 2319 char buffer[sizeof(registers_[0])]; get_double_from_register_pair() local [all...] |
| /third_party/vulkan-headers/include/vulkan/ |
| H A D | vulkan.hpp | 1190 VkResult vkBindBufferMemory( VkDevice device, VkBuffer buffer, VkDeviceMemory memory, VkDeviceSize memoryOffset ) const VULKAN_HPP_NOEXCEPT 1192 return ::vkBindBufferMemory( device, buffer, memory, memoryOffset ); 1200 void vkGetBufferMemoryRequirements( VkDevice device, VkBuffer buffer, VkMemoryRequirements * pMemoryRequirements ) const VULKAN_HPP_NOEXCEPT 1202 return ::vkGetBufferMemoryRequirements( device, buffer, pMemoryRequirements ); 1337 void vkDestroyBuffer( VkDevice device, VkBuffer buffer, const VkAllocationCallbacks * pAllocator ) const VULKAN_HPP_NOEXCEPT 1339 return ::vkDestroyBuffer( device, buffer, pAllocator ); 1680 void vkCmdBindIndexBuffer( VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkIndexType indexType ) const VULKAN_HPP_NOEXCEPT 1682 return ::vkCmdBindIndexBuffer( commandBuffer, buffer, offset, indexType ); 1710 void vkCmdDrawIndirect( VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t drawCount, uint32_t stride ) const VULKAN_HPP_NOEXCEPT 1712 return ::vkCmdDrawIndirect( commandBuffer, buffer, offse [all...] |
| /test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
| H A D | wcharndk.cpp | 540 wchar_t buffer[MAX];
in Swprintf() local 541 int value = swprintf(buffer, MAX, L"%ls", hebrew_str);
in Swprintf() 772 wchar_t buffer[80];
in Wcsftime() local 775 int wcsftime_value = wcsftime(buffer, SIZE_80, L"%Y", timeinfo);
in Wcsftime() 787 wchar_t buffer[SIZE_80];
in WcsftimeL() local 791 int wcsftime_l_value = wcsftime_l(buffer, SIZE_80, L"%Y", timeinfo, locale);
in WcsftimeL() 1742 int vswscanfTest(const wchar_t *buffer, const wchar_t *format, ...)
in vswscanfTest() argument 1747 vswscanf(buffer, format, args);
in vswscanfTest()
|
| /third_party/mesa3d/src/amd/vulkan/ |
| H A D | radv_image.c | 712 radv_make_buffer_descriptor(struct radv_device *device, struct radv_buffer *buffer, in radv_make_buffer_descriptor() argument 717 uint64_t gpu_address = radv_buffer_get_va(buffer->bo); in radv_make_buffer_descriptor() 718 uint64_t va = gpu_address + buffer->offset; in radv_make_buffer_descriptor() 2513 RADV_FROM_HANDLE(radv_buffer, buffer, pCreateInfo->buffer); in radv_buffer_view_init() 2517 view->bo = buffer->bo; in radv_buffer_view_init() 2518 view->range = vk_buffer_range(&buffer->vk, pCreateInfo->offset, pCreateInfo->range); in radv_buffer_view_init() 2521 radv_make_buffer_descriptor(device, buffer, view->vk_format, pCreateInfo->offset, view->range, in radv_buffer_view_init()
|
| /third_party/mesa3d/src/intel/vulkan/ |
| H A D | genX_pipeline.c | 1288 unsigned buffer = output->buffer; in emit_3dstate_streamout() local 1289 unsigned stream = xfb_info->buffer_to_stream[buffer]; in emit_3dstate_streamout() 1297 int hole_dwords = (output->offset - next_offset[buffer]) / 4; in emit_3dstate_streamout() 1301 .OutputBufferSlot = buffer, in emit_3dstate_streamout() 1328 next_offset[buffer] = output->offset + in emit_3dstate_streamout() 1338 .OutputBufferSlot = buffer, in emit_3dstate_streamout() 1343 .OutputBufferSlot = buffer, in emit_3dstate_streamout() 1431 /* On Gfx7, the SO buffer enables live in 3DSTATE_STREAMOUT which in emit_3dstate_streamout() 2206 * of a buffer wit in emit_task_state() [all...] |
| /third_party/mesa3d/src/gallium/drivers/iris/ |
| H A D | iris_resource.c | 839 /* Having no aux buffer is only okay if there's no modifier with aux. */ in iris_resource_configure_aux() 850 * "When MCS buffer is enabled and bound to MSRT, it is required in iris_resource_configure_aux() 853 * Since we only use the MCS buffer for rendering, we just clear it in iris_resource_configure_aux() 902 /* Create the aux_state for the auxiliary buffer. */ in iris_resource_configure_aux() 911 * Initialize the aux buffer contents. 1017 * Also add some padding to make sure the fast clear color state buffer in iris_resource_finish_aux_import() 1082 /* Some buffer operations want some amount of alignment. The largest in iris_buffer_alignment() 1083 * buffer texture pixel size is 4 * 4 = 16B. OpenCL data is also supposed in iris_buffer_alignment() 1112 const char *name = templ->target == PIPE_BUFFER ? "buffer" : "miptree"; in iris_resource_create_for_buffer() 1185 /* Modifiers require the aux data to be in the same buffer a in iris_resource_create_with_modifiers() [all...] |
| /third_party/mksh/ |
| H A D | funcs.c | 2769 #define test_stat(name,buffer) stat_ex(stat, (name), (buffer)) 2770 #define test_lstat(name,buffer) stat_ex(lstat, (name), (buffer)) 2773 #define test_stat(name,buffer) stat((name), (buffer)) 2774 #define test_lstat(name,buffer) lstat((name), (buffer))
|
| /third_party/mesa3d/src/gallium/drivers/zink/ |
| H A D | zink_resource.c | 102 VKSCR(DestroyBuffer)(screen->dev, obj->buffer, NULL); in zink_destroy_resource_object() 618 if (VKSCR(CreateBuffer)(screen->dev, &bci, NULL, &obj->buffer) != VK_SUCCESS) { in resource_object_create() 631 VKSCR(GetBufferMemoryRequirements)(screen->dev, obj->buffer, &reqs); in resource_object_create() 938 .buffer = VK_NULL_HANDLE, in resource_object_create() 1034 if (VKSCR(BindBufferMemory)(screen->dev, obj->buffer, zink_bo_get_mem(obj->bo), obj->offset) != VK_SUCCESS) { in resource_object_create() 1078 VKSCR(DestroyBuffer)(screen->dev, obj->buffer, NULL); in resource_object_create() 1135 * because they might never be moved back again. If a buffer is large enough, in resource_create() 1136 * upload data by copying from a temporary GTT buffer. 8K might not seem much, in resource_create() 1584 /* force counter buffer reset */ in invalidate_buffer() 1742 /* See if the buffer rang in zink_buffer_map() 2123 zink_buffer_subdata(struct pipe_context *ctx, struct pipe_resource *buffer, unsigned usage, unsigned offset, unsigned size, const void *data) zink_buffer_subdata() argument [all...] |