Home
last modified time | relevance | path

Searched refs:buffer (Results 6476 - 6500 of 11084) sorted by relevance

1...<<251252253254255256257258259260>>...444

/third_party/libsnd/src/ALAC/
H A Dalac_decoder.c54 static void Zero32 (int32_t * buffer, uint32_t numItems, uint32_t stride) ;
133 - the decoded samples are interleaved into the output buffer in the order they arrive in
179 // bail if we ran off the end of the buffer in alac_decode()
241 // if shift active, skip the shift buffer but remember where it starts in alac_decode()
268 // uncompressed frame, copy data into the mix buffer to use common output code in alac_decode()
296 // now read the shifted values into the shift buffer in alac_decode()
306 // convert 32-bit integers into output buffer in alac_decode()
483 // now read the shifted values into the shift buffer in alac_decode()
641 static void Zero32 (int32_t * buffer, uint32_t numItems, uint32_t stride) in Zero32() argument
645 memset (buffer, in Zero32()
[all...]
/third_party/lzma/CPP/7zip/Archive/7z/
H A D7zEncode.cpp229 CByteBuffer_Wipe buffer(sizeInBytes); in CreateMixerCoder()
233 ((Byte *)buffer)[i * 2] = (Byte)c; in CreateMixerCoder()
234 ((Byte *)buffer)[i * 2 + 1] = (Byte)(c >> 8); in CreateMixerCoder()
236 RINOK(cryptoSetPassword->CryptoSetPassword((const Byte *)buffer, (UInt32)sizeInBytes)) in CreateMixerCoder()
/third_party/mesa3d/src/egl/main/
H A Deglsurface.c213 /* Unlike normal EGLSurfaces, one with a mutable render buffer in _eglParseSurfaceAttribList()
214 * uses the application-chosen render buffer. in _eglParseSurfaceAttribList()
497 * Querying EGL_RENDER_BUFFER returns the buffer which client API in _eglQuerySurface()
509 * buffer being rendered to by a context, call eglQueryContext. in _eglQuerySurface()
756 _eglBindTexImage(_EGLDisplay *disp, _EGLSurface *surface, EGLint buffer) in _eglBindTexImage() argument
776 if (buffer != EGL_BACK_BUFFER) in _eglBindTexImage()
785 _eglReleaseTexImage(_EGLDisplay *disp, _EGLSurface *surf, EGLint buffer) in _eglReleaseTexImage() argument
805 if (buffer != EGL_BACK_BUFFER) in _eglReleaseTexImage()
/third_party/node/test/fixtures/wpt/html/webappapis/structured-clone/
H A Dstructured-clone-battery-of-tests.js315 const buffer = new ArrayBuffer(arr.length);
316 const view = new DataView(buffer);
389 assert_not_equals(actual.buffer, input.buffer, 'buffer');
/third_party/node/deps/icu-small/source/common/
H A Ducnvsel.cpp284 void* buffer, int32_t bufferCapacity, UErrorCode* status) { in ucnvsel_serialize()
290 uint8_t *p = (uint8_t *)buffer; in ucnvsel_serialize()
466 ucnvsel_openFromSerialized(const void* buffer, int32_t length, UErrorCode* status) { in ucnvsel_openFromSerialized() argument
472 const uint8_t *p = (const uint8_t *)buffer; in ucnvsel_openFromSerialized()
283 ucnvsel_serialize(const UConverterSelector* sel, void* buffer, int32_t bufferCapacity, UErrorCode* status) ucnvsel_serialize() argument
/third_party/node/deps/icu-small/source/i18n/
H A Dfmtable.cpp846 UnicodeString buffer; in streamOut() local
854 defDateFormat->format(obj.getDate(), buffer); in streamOut()
855 stream << buffer; in streamOut() local
868 stream << '"' << obj.getString(buffer) << '"'; in streamOut()
/third_party/node/deps/v8/src/objects/
H A Dstring-table.cc642 std::unique_ptr<Char[]> buffer; in TryStringToIndexOrLookupExisting() local
648 buffer.reset(new Char[length]); in TryStringToIndexOrLookupExisting()
649 String::WriteToFlat(source, buffer.get(), 0, length, isolate, access_guard); in TryStringToIndexOrLookupExisting()
650 chars = buffer.get(); in TryStringToIndexOrLookupExisting()
/third_party/node/deps/v8/src/runtime/
H A Druntime-test-wasm.cc344 // Take an array buffer and attempt to reconstruct a compiled wasm module.
349 Handle<JSArrayBuffer> buffer = args.at<JSArrayBuffer>(0); in RUNTIME_FUNCTION() local
351 CHECK(!buffer->was_detached()); in RUNTIME_FUNCTION()
360 reinterpret_cast<uint8_t*>(buffer->backing_store()), in RUNTIME_FUNCTION()
361 buffer->byte_length()}; in RUNTIME_FUNCTION()
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_bicubic_filter.c301 if(!filter->quad.buffer.resource) in vl_bicubic_filter_init()
355 pipe_resource_reference(&filter->quad.buffer.resource, NULL); in vl_bicubic_filter_init()
379 pipe_resource_reference(&filter->quad.buffer.resource, NULL); in vl_bicubic_filter_cleanup()
434 &cb.buffer_offset, &cb.buffer, (void**)&ptr); in vl_bicubic_filter_render()
/third_party/mesa3d/src/glx/
H A Dsingle2.c333 ** Error occurred; don't modify user's buffer. in __indirect_glGetBooleanv()
384 ** Error occurred; don't modify user's buffer. in __indirect_glGetDoublev()
435 ** Error occurred; don't modify user's buffer. in __indirect_glGetFloatv()
486 ** Error occurred; don't modify user's buffer. in __indirect_glGetIntegerv()
540 __indirect_glFeedbackBuffer(GLsizei size, GLenum type, GLfloat * buffer) in __indirect_glFeedbackBuffer() argument
553 gc->feedbackBuf = buffer; in __indirect_glFeedbackBuffer()
557 __indirect_glSelectBuffer(GLsizei numnames, GLuint * buffer) in __indirect_glSelectBuffer() argument
569 gc->selectBuf = buffer; in __indirect_glSelectBuffer()
839 * how we handle writing into the 'residences' buffer when n%4!=0.
870 * how we handle writing into the 'residences' buffer whe
[all...]
/third_party/node/deps/uv/src/unix/
H A Dsunos.c377 * We could use a static buffer for the path manipulations that we need outside
381 int uv_exepath(char* buffer, size_t* size) { in uv_exepath() argument
385 if (buffer == NULL || size == NULL || *size == 0) in uv_exepath()
392 res = readlink(buf, buffer, res); in uv_exepath()
397 buffer[res] = '\0'; in uv_exepath()
/third_party/rust/crates/aho-corasick/src/
H A Dahocorasick.rs4 use crate::buffer::Buffer;
503 /// the match and a string buffer with which to write the replaced text
569 /// the match and a byte buffer with which to write the replaced text
641 /// When searching a stream, an internal buffer is used. Therefore, callers
654 /// its internal buffer. The one requirement is that the internal buffer
656 /// cases, the default buffer size will be much larger than any individual
707 /// When searching a stream, an internal buffer is used. Therefore, callers in stream_find_iter()
721 /// its internal buffer. The one requirement is that the internal buffer in stream_find_iter()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawExplicitVertexParameterTests.cpp289 "layout (binding = 0, std140) writeonly buffer Output {\n" in initPrograms()
359 // Create color buffer images. in iterate()
433 // Create vertex buffer. in iterate()
460 // Create SSBO buffer in iterate()
487 ssboBuffer->object(), // VkBuffer buffer; in iterate()
552 const VkBuffer buffer = vertexBuffer->object(); in iterate() local
564 // record secondary command buffer in iterate()
573 drawCommands(*secCmdBuffer, buffer); in iterate()
580 // record primary command buffer in iterate()
597 drawCommands(*cmdBuffer, buffer); in iterate()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
H A DvktDrawExplicitVertexParameterTests.cpp289 "layout (binding = 0, std140) writeonly buffer Output {\n" in initPrograms()
359 // Create color buffer images. in iterate()
433 // Create vertex buffer. in iterate()
460 // Create SSBO buffer in iterate()
487 ssboBuffer->object(), // VkBuffer buffer; in iterate()
552 const VkBuffer buffer = vertexBuffer->object(); in iterate() local
564 // record secondary command buffer in iterate()
573 drawCommands(*secCmdBuffer, buffer); in iterate()
580 // record primary command buffer in iterate()
597 drawCommands(*cmdBuffer, buffer); in iterate()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DSurface.cpp528 Error Surface::bindTexImage(gl::Context *context, gl::Texture *texture, EGLint buffer) in bindTexImage() argument
531 ANGLE_TRY(mImplementation->bindTexImage(context, texture, buffer)); in bindTexImage()
543 Error Surface::releaseTexImage(const gl::Context *context, EGLint buffer) in releaseTexImage() argument
547 ANGLE_TRY(mImplementation->releaseTexImage(context, buffer)); in releaseTexImage()
609 // current frame, so the buffer age is always 1. in getBufferAge()
H A DvalidationGL45_autogen.h53 GLenum buffer,
59 GLenum buffer,
64 GLenum buffer,
69 GLenum buffer,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DSecondaryCommandBuffer.cpp139 // Parse the cmds in this cmd buffer into given primary cmd buffer
218 vkCmdBindIndexBuffer(cmdBuffer, params->buffer, params->offset, in executeCommands()
333 vkCmdDispatchIndirect(cmdBuffer, params->buffer, params->offset); in executeCommands()
360 vkCmdDrawIndexedIndirect(cmdBuffer, params->buffer, params->offset, in executeCommands()
393 vkCmdDrawIndirect(cmdBuffer, params->buffer, params->offset, params->drawCount, in executeCommands()
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLPrintEGLinfoTest.cpp132 std::array<char, kBufferSize> buffer; in TEST_P() local
134 std::strftime(buffer.data(), buffer.size(), "%B %e, %Y", std::localtime(&timeNow)); in TEST_P()
135 json.addCString("DateRecorded", buffer.data()); in TEST_P()
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Ddjpeg.c743 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer, in djpeg()
754 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer, in djpeg()
794 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer, in djpeg()
814 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer, in djpeg()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dfmtable.cpp846 UnicodeString buffer; in streamOut() local
854 defDateFormat->format(obj.getDate(), buffer); in streamOut()
855 stream << buffer; in streamOut() local
868 stream << '"' << obj.getString(buffer) << '"'; in streamOut()
/third_party/skia/third_party/externals/microhttpd/src/testcurl/
H A Dtest_post.c493 const char *buffer; member
509 memcpy(p, data->buffer + data->pos, required); in readBuffer()
559 crbc.buffer = "Test content"; in testMultithreadedPostCancelPart()
560 crbc.size = strlen(crbc.buffer); in testMultithreadedPostCancelPart()
/third_party/skia/third_party/externals/oboe/samples/gradle/wrapper/
H A Dgradle-wrapper.jar ... md java.io.InputStream fis int n byte[] buffer byte[] byteData StringBuffer hexString private java.io.File ...
/third_party/skia/third_party/externals/oboe/src/aaudio/
H A DAudioStreamAAudio.cpp420 ResultWithValue<int32_t> AudioStreamAAudio::write(const void *buffer, in write() argument
425 int32_t result = mLibLoader->stream_write(mAAudioStream, buffer, in write()
433 ResultWithValue<int32_t> AudioStreamAAudio::read(void *buffer, in read() argument
438 int32_t result = mLibLoader->stream_read(mAAudioStream, buffer, in read()
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftmac.c578 return a PFB buffer. This is somewhat convoluted because the FT2
590 unsigned char *buffer, *p, *size_p = NULL; in read_lwfn() local
601 /* the output buffer. */ in read_lwfn()
634 if ( FT_QALLOC( buffer, (FT_Long)total_size ) ) in read_lwfn()
637 /* Second pass: append all POST data to the buffer, add PFB fields. */ in read_lwfn()
639 p = buffer; in read_lwfn()
689 *pfb_data = buffer; in read_lwfn()
/third_party/skia/third_party/externals/freetype/src/cid/
H A Dcidload.c677 FT_Byte buffer[256]; in cid_hex_to_binary() local
689 p = buffer; in cid_hex_to_binary()
709 if ( FT_STREAM_READ( buffer, 256 > size ? size : 256 ) ) in cid_hex_to_binary()
711 p = buffer; in cid_hex_to_binary()

Completed in 29 milliseconds

1...<<251252253254255256257258259260>>...444