Home
last modified time | relevance | path

Searched refs:buffer (Results 2526 - 2550 of 6014) sorted by relevance

1...<<101102103104105106107108109110>>...241

/third_party/curl/src/
H A Dtool_cb_rea.c46 size_t tool_read_cb(char *buffer, size_t sz, size_t nmemb, void *userdata) in tool_read_cb() argument
85 rc = read(per->infd, buffer, sz*nmemb); in tool_read_cb()
/third_party/backends/backend/
H A Dmustek_pp_null.c138 debug_drv_read (SANE_Handle hndl, SANE_Byte *buffer) in debug_drv_read() argument
143 memset (buffer, 0, dev->params.bytes_per_line); in debug_drv_read()
/third_party/icu/icu4c/source/tools/toolutil/
H A Dfilestrm.h63 T_FileStream_readLine(FileStream* fileStream, char* buffer, int32_t length);
66 T_FileStream_writeLine(FileStream* fileStream, const char* buffer);
/third_party/icu/icu4c/source/samples/legacy/
H A Doldcol.cpp32 // Very simple example code - sticks a sortkey in the buffer
34 int32_t getSortKey_legacy(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) { in getSortKey_legacy() argument
40 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen); in getSortKey_legacy()
H A Dnewcol.cpp31 // Very simple example code - sticks a sortkey in the buffer
33 int32_t getSortKey_current(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) { in getSortKey_current() argument
39 int32_t result = ucol_getSortKey(coll, string, sLen, buffer, bLen); in getSortKey_current()
/third_party/NuttX/drivers/bch/
H A Dbchlib_setup.c124 /* Allocate the sector I/O buffer */ in bchlib_setup()
126 bch->buffer = (uint8_t *)malloc(bch->sectsize); in bchlib_setup()
127 if (!bch->buffer) in bchlib_setup()
129 PRINTK("ERROR: Failed to allocate sector buffer\n"); in bchlib_setup()
/third_party/libuv/test/
H A Drunner.h125 /* Print lines in |buffer| as TAP diagnostics to |stream|. */
126 void print_lines(const char* buffer, size_t size, FILE* stream);
146 /* Returns the number of bytes in the stdio output buffer for process `p`. */
149 /* Copy the contents of the stdio output buffer to `stream`. */
152 /* Copy the last line of the stdio output buffer to `buffer` */
154 char * buffer,
166 /* Clean up after terminating process `p` (e.g. free the output buffer etc.). */
/third_party/ltp/include/old/
H A Dtlibio.h37 #define LIO_IO_SYNCV 00020 /* single-buffer readv/writev */
128 int lio_write_buffer(int fd, int method, char *buffer, int size,
131 int lio_read_buffer(int fd, int method, char *buffer, int size,
/third_party/node/src/
H A Daliased_struct-inl.h22 v8::Local<v8::ArrayBuffer> buffer = v8::ArrayBuffer::New(isolate, store_); in AliasedStruct() local
23 buffer_ = v8::Global<v8::ArrayBuffer>(isolate, buffer); in AliasedStruct()
/third_party/node/test/parallel/
H A Dtest-fs-read.js81 () => fs.read(fd, { buffer: null }, common.mustNotCall()),
83 'throws when options.buffer is null'
87 () => fs.readSync(fd, { buffer: null }),
90 message: 'The "buffer" argument must be an instance of Buffer, ' +
93 'throws when options.buffer is null'
H A Dtest-whatwg-encoding-custom-api-basics.js15 new TextDecoder(encoding).decode(new Uint8Array(bytes).buffer),
39 new TextDecoder(encoding).decode(new Uint8Array(bytes).buffer),
/third_party/node/test/sequential/
H A Dtest-crypto-timing-safe-equal.js23 const buf = crypto.randomBytes(16).buffer;
63 test(new Float64Array(x.buffer), new Float64Array([NaN, NaN]), {
80 () => crypto.timingSafeEqual('not a buffer', Buffer.from([1, 2])),
88 () => crypto.timingSafeEqual(Buffer.from([1, 2]), 'not a buffer'),
/third_party/node/test/addons/zlib-binding/
H A Dbinding.cc14 auto buffer = view->Buffer(); in CompressBytes() local
15 auto contents = buffer->GetBackingStore(); in CompressBytes()
/third_party/node/test/common/
H A Dudppair.js80 for (const buffer of buffers) {
81 this._handle.emitReceived(buffer, familyInt, address, port, flags);
/third_party/node/test/fixtures/wpt/encoding/
H A Dapi-basics.any.js17 assert_equals(new TextDecoder(encoding).decode(new Uint8Array(bytes).buffer), string);
33 assert_equals(new TextDecoder(encoding).decode(new Uint8Array(bytes).buffer), string);
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dfilestrm.h63 T_FileStream_readLine(FileStream* fileStream, char* buffer, int32_t length);
66 T_FileStream_writeLine(FileStream* fileStream, const char* buffer);
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_resource.c42 if (!nv30->vtxbuf[i].buffer.resource) in nv30_memory_barrier()
44 if (nv30->vtxbuf[i].buffer.resource->flags & PIPE_RESOURCE_FLAG_MAP_PERSISTENT) in nv30_memory_barrier()
/third_party/icu/icu4c/source/tools/gennorm2/
H A Dn2builder.h87 UBool mappingHasCompBoundaryAfter(const BuilderReorderingBuffer &buffer,
90 UBool mappingRecomposes(const BuilderReorderingBuffer &buffer) const;
/third_party/ltp/testcases/kernel/syscalls/keyctl/
H A Dkeyctl02.c43 char buffer[4] = { 0 }; in do_read() local
45 keyctl(KEYCTL_READ, key, buffer, 4); in do_read()
/third_party/lzma/C/
H A DLzFindMt.h39 typedef void (*Mf_GetHeads)(const Byte *buffer, UInt32 pos,
80 const Byte *buffer; member
/third_party/node/deps/v8/src/codegen/
H A Dcode-desc.cc17 desc->buffer = assembler->buffer_start(); in Initialize()
50 DCHECK_NOT_NULL(desc->buffer); in Verify()
/third_party/node/deps/v8/src/base/utils/
H A Drandom-number-generator.h42 using EntropySource = bool (*)(unsigned char* buffer, size_t buflen);
85 void NextBytes(void* buffer, size_t buflen);
/third_party/node/deps/v8/include/v8-include/cppgc/internal/
H A Dname-trait.h48 static constexpr auto buffer = in GetTypename() local
50 return buffer.name; in GetTypename()
/third_party/node/deps/v8/include/cppgc/internal/
H A Dname-trait.h47 static constexpr auto buffer = in GetTypename() local
49 return buffer.name; in GetTypename()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/
H A DPbufferSurfaceWGL.h47 EGLint buffer) override;
48 egl::Error releaseTexImage(const gl::Context *context, EGLint buffer) override;

Completed in 10 milliseconds

1...<<101102103104105106107108109110>>...241