/third_party/libsnd/src/ALAC/ |
H A D | alac_decoder.c | 54 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 D | 7zEncode.cpp | 229 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 D | eglsurface.c | 213 /* 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 D | structured-clone-battery-of-tests.js | 315 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 D | ucnvsel.cpp | 284 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 D | fmtable.cpp | 846 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 D | string-table.cc | 642 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 D | runtime-test-wasm.cc | 344 // 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 D | vl_bicubic_filter.c | 301 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 D | single2.c | 333 ** 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 D | sunos.c | 377 * 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 D | ahocorasick.rs | 4 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 D | vktDrawExplicitVertexParameterTests.cpp | 289 "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 D | vktDrawExplicitVertexParameterTests.cpp | 289 "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 D | Surface.cpp | 528 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 D | validationGL45_autogen.h | 53 GLenum buffer, 59 GLenum buffer, 64 GLenum buffer, 69 GLenum buffer,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | SecondaryCommandBuffer.cpp | 139 // 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 D | EGLPrintEGLinfoTest.cpp | 132 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 D | djpeg.c | 743 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 D | fmtable.cpp | 846 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 D | test_post.c | 493 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 D | gradle-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 D | AudioStreamAAudio.cpp | 420 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 D | ftmac.c | 578 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 D | cidload.c | 677 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()
|