Home
last modified time | relevance | path

Searched refs:buf (Results 1 – 25 of 6673) sorted by relevance

12345678910>>...267

/third_party/gettext/gnulib-local/lib/libxml/
Dbuf.c89 #define UPDATE_COMPAT(buf) \ argument
90 if (buf->size < INT_MAX) buf->compat_size = buf->size; \
91 else buf->compat_size = INT_MAX; \
92 if (buf->use < INT_MAX) buf->compat_use = buf->use; \
93 else buf->compat_use = INT_MAX;
100 #define CHECK_COMPAT(buf) \ argument
101 if (buf->size != (size_t) buf->compat_size) \
102 if (buf->compat_size < INT_MAX) \
103 buf->size = buf->compat_size; \
104 if (buf->use != (size_t) buf->compat_use) \
[all …]
/third_party/flatbuffers/go/
Dencode.go22 func GetByte(buf []byte) byte {
23 return byte(GetUint8(buf))
27 func GetBool(buf []byte) bool {
28 return buf[0] == 1
32 func GetUint8(buf []byte) (n uint8) {
33 n = uint8(buf[0])
38 func GetUint16(buf []byte) (n uint16) {
39 _ = buf[1] // Force one bounds check. See: golang.org/issue/14808
40 n |= uint16(buf[0])
41 n |= uint16(buf[1]) << 8
[all …]
/third_party/libxml2/
Dbuf.c64 #define UPDATE_COMPAT(buf) \ argument
65 if (buf->size < INT_MAX) buf->compat_size = buf->size; \
66 else buf->compat_size = INT_MAX; \
67 if (buf->use < INT_MAX) buf->compat_use = buf->use; \
68 else buf->compat_use = INT_MAX;
75 #define CHECK_COMPAT(buf) \ argument
76 if (buf->size != (size_t) buf->compat_size) \
77 if (buf->compat_size < INT_MAX) \
78 buf->size = buf->compat_size; \
79 if (buf->use != (size_t) buf->compat_use) \
[all …]
/third_party/libunwind/tests/
DLrs-race.c49 void *buf[20]; in foo_0() local
52 if ((n = unw_backtrace (buf, 20)) < 3) in foo_0()
59 void *buf[20]; in foo_1() local
62 if ((n = unw_backtrace (buf, 20)) < 3) in foo_1()
69 void *buf[20]; in foo_2() local
72 if ((n = unw_backtrace (buf, 20)) < 3) in foo_2()
79 void *buf[20]; in foo_3() local
82 if ((n = unw_backtrace (buf, 20)) < 3) in foo_3()
89 void *buf[20]; in foo_4() local
92 if ((n = unw_backtrace (buf, 20)) < 3) in foo_4()
[all …]
/third_party/glib/glib/tests/
Dtest-printf.c35 gchar buf[128]; in test_retval_and_trunc() local
38 res = g_snprintf (buf, 0, "abc"); in test_retval_and_trunc()
44 res = g_snprintf (buf, 5, "abc"); in test_retval_and_trunc()
47 res = g_snprintf (buf, 1, "abc"); in test_retval_and_trunc()
49 g_assert (buf[0] == '\0'); in test_retval_and_trunc()
50 g_assert_cmpstr (buf, ==, ""); in test_retval_and_trunc()
52 res = g_snprintf (buf, 2, "abc"); in test_retval_and_trunc()
54 g_assert (buf[1] == '\0'); in test_retval_and_trunc()
55 g_assert_cmpstr (buf, ==, "a"); in test_retval_and_trunc()
57 res = g_snprintf (buf, 3, "abc"); in test_retval_and_trunc()
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/lang/ast/
Dstring.go32 func (n *Expr) appendStr(buf []byte, tm *t.Map, parenthesize bool, depth uint32) []byte {
34 return append(buf, "!expr_recursion_depth_too_large!"...)
39 return buf
45 buf = append(buf, opString(n.id0)...)
46 buf = n.rhs.AsExpr().appendStr(buf, tm, true, depth)
50 buf = append(buf, '(')
52 buf = n.lhs.AsExpr().appendStr(buf, tm, true, depth)
53 buf = append(buf, opString(n.id0)...)
55 buf = append(buf, n.rhs.AsTypeExpr().Str(tm)...)
57 buf = n.rhs.AsExpr().appendStr(buf, tm, true, depth)
[all …]
/third_party/mesa3d/src/util/
Du_dynarray.h54 util_dynarray_init(struct util_dynarray *buf, void *mem_ctx) in util_dynarray_init() argument
56 memset(buf, 0, sizeof(*buf)); in util_dynarray_init()
57 buf->mem_ctx = mem_ctx; in util_dynarray_init()
61 util_dynarray_fini(struct util_dynarray *buf) in util_dynarray_fini() argument
63 if (buf->data) { in util_dynarray_fini()
64 if (buf->mem_ctx) { in util_dynarray_fini()
65 ralloc_free(buf->data); in util_dynarray_fini()
67 free(buf->data); in util_dynarray_fini()
69 util_dynarray_init(buf, buf->mem_ctx); in util_dynarray_fini()
74 util_dynarray_clear(struct util_dynarray *buf) in util_dynarray_clear() argument
[all …]
Du_idalloc.c40 util_idalloc_resize(struct util_idalloc *buf, unsigned new_num_elements) in util_idalloc_resize() argument
42 if (new_num_elements > buf->num_elements) { in util_idalloc_resize()
43 buf->data = realloc(buf->data, new_num_elements * sizeof(*buf->data)); in util_idalloc_resize()
44 memset(&buf->data[buf->num_elements], 0, in util_idalloc_resize()
45 (new_num_elements - buf->num_elements) * sizeof(*buf->data)); in util_idalloc_resize()
46 buf->num_elements = new_num_elements; in util_idalloc_resize()
51 util_idalloc_init(struct util_idalloc *buf, unsigned initial_num_ids) in util_idalloc_init() argument
53 memset(buf, 0, sizeof(*buf)); in util_idalloc_init()
55 util_idalloc_resize(buf, DIV_ROUND_UP(initial_num_ids, 32)); in util_idalloc_init()
59 util_idalloc_fini(struct util_idalloc *buf) in util_idalloc_fini() argument
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/
Dp2p_build.c18 void p2p_buf_add_action_hdr(struct wpabuf *buf, u8 subtype, u8 dialog_token) in p2p_buf_add_action_hdr() argument
20 wpabuf_put_u8(buf, WLAN_ACTION_VENDOR_SPECIFIC); in p2p_buf_add_action_hdr()
21 wpabuf_put_be32(buf, P2P_IE_VENDOR_TYPE); in p2p_buf_add_action_hdr()
23 wpabuf_put_u8(buf, subtype); /* OUI Subtype */ in p2p_buf_add_action_hdr()
24 wpabuf_put_u8(buf, dialog_token); in p2p_buf_add_action_hdr()
29 void p2p_buf_add_public_action_hdr(struct wpabuf *buf, u8 subtype, in p2p_buf_add_public_action_hdr() argument
32 wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC); in p2p_buf_add_public_action_hdr()
33 wpabuf_put_u8(buf, WLAN_PA_VENDOR_SPECIFIC); in p2p_buf_add_public_action_hdr()
34 wpabuf_put_be32(buf, P2P_IE_VENDOR_TYPE); in p2p_buf_add_public_action_hdr()
36 wpabuf_put_u8(buf, subtype); /* OUI Subtype */ in p2p_buf_add_public_action_hdr()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/
Dp2p_build.c18 void p2p_buf_add_action_hdr(struct wpabuf *buf, u8 subtype, u8 dialog_token) in p2p_buf_add_action_hdr() argument
20 wpabuf_put_u8(buf, WLAN_ACTION_VENDOR_SPECIFIC); in p2p_buf_add_action_hdr()
21 wpabuf_put_be32(buf, P2P_IE_VENDOR_TYPE); in p2p_buf_add_action_hdr()
23 wpabuf_put_u8(buf, subtype); /* OUI Subtype */ in p2p_buf_add_action_hdr()
24 wpabuf_put_u8(buf, dialog_token); in p2p_buf_add_action_hdr()
29 void p2p_buf_add_public_action_hdr(struct wpabuf *buf, u8 subtype, in p2p_buf_add_public_action_hdr() argument
32 wpabuf_put_u8(buf, WLAN_ACTION_PUBLIC); in p2p_buf_add_public_action_hdr()
33 wpabuf_put_u8(buf, WLAN_PA_VENDOR_SPECIFIC); in p2p_buf_add_public_action_hdr()
34 wpabuf_put_be32(buf, P2P_IE_VENDOR_TYPE); in p2p_buf_add_public_action_hdr()
36 wpabuf_put_u8(buf, subtype); /* OUI Subtype */ in p2p_buf_add_public_action_hdr()
[all …]
/third_party/python/Modules/_blake2/impl/
Dblake2s-load-sse2.h17 #define LOAD_MSG_0_1(buf) buf = _mm_set_epi32(m6,m4,m2,m0) argument
18 #define LOAD_MSG_0_2(buf) buf = _mm_set_epi32(m7,m5,m3,m1) argument
19 #define LOAD_MSG_0_3(buf) buf = _mm_set_epi32(m14,m12,m10,m8) argument
20 #define LOAD_MSG_0_4(buf) buf = _mm_set_epi32(m15,m13,m11,m9) argument
21 #define LOAD_MSG_1_1(buf) buf = _mm_set_epi32(m13,m9,m4,m14) argument
22 #define LOAD_MSG_1_2(buf) buf = _mm_set_epi32(m6,m15,m8,m10) argument
23 #define LOAD_MSG_1_3(buf) buf = _mm_set_epi32(m5,m11,m0,m1) argument
24 #define LOAD_MSG_1_4(buf) buf = _mm_set_epi32(m3,m7,m2,m12) argument
25 #define LOAD_MSG_2_1(buf) buf = _mm_set_epi32(m15,m5,m12,m11) argument
26 #define LOAD_MSG_2_2(buf) buf = _mm_set_epi32(m13,m2,m0,m8) argument
[all …]
/third_party/ffmpeg/libavutil/
Dbprint.c33 #define av_bprint_room(buf) ((buf)->size - FFMIN((buf)->len, (buf)->size)) argument
34 #define av_bprint_is_allocated(buf) ((buf)->str != (buf)->reserved_internal_buffer) argument
36 static int av_bprint_alloc(AVBPrint *buf, unsigned room) in av_bprint_alloc() argument
41 if (buf->size == buf->size_max) in av_bprint_alloc()
43 if (!av_bprint_is_complete(buf)) in av_bprint_alloc()
45 min_size = buf->len + 1 + FFMIN(UINT_MAX - buf->len - 1, room); in av_bprint_alloc()
46 new_size = buf->size > buf->size_max / 2 ? buf->size_max : buf->size * 2; in av_bprint_alloc()
48 new_size = FFMIN(buf->size_max, min_size); in av_bprint_alloc()
49 old_str = av_bprint_is_allocated(buf) ? buf->str : NULL; in av_bprint_alloc()
54 memcpy(new_str, buf->str, buf->len + 1); in av_bprint_alloc()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dwpabuf.c22 static struct wpabuf_trace * wpabuf_get_trace(const struct wpabuf *buf) in wpabuf_get_trace() argument
25 ((const u8 *) buf - sizeof(struct wpabuf_trace)); in wpabuf_get_trace()
30 static void wpabuf_overflow(const struct wpabuf *buf, size_t len) in wpabuf_overflow() argument
33 struct wpabuf_trace *trace = wpabuf_get_trace(buf); in wpabuf_overflow()
40 buf, (unsigned long) buf->size, (unsigned long) buf->used, in wpabuf_overflow()
49 struct wpabuf *buf = *_buf; in wpabuf_resize() local
54 if (buf == NULL) { in wpabuf_resize()
60 trace = wpabuf_get_trace(buf); in wpabuf_resize()
69 if (buf->used + add_len > buf->size) { in wpabuf_resize()
71 if (buf->flags & WPABUF_FLAG_EXT_DATA) { in wpabuf_resize()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
Dwpabuf.c22 static struct wpabuf_trace * wpabuf_get_trace(const struct wpabuf *buf) in wpabuf_get_trace() argument
25 ((const u8 *) buf - sizeof(struct wpabuf_trace)); in wpabuf_get_trace()
30 static void wpabuf_overflow(const struct wpabuf *buf, size_t len) in wpabuf_overflow() argument
33 struct wpabuf_trace *trace = wpabuf_get_trace(buf); in wpabuf_overflow()
40 buf, (unsigned long) buf->size, (unsigned long) buf->used, in wpabuf_overflow()
49 struct wpabuf *buf = *_buf; in wpabuf_resize() local
54 if (buf == NULL) { in wpabuf_resize()
60 trace = wpabuf_get_trace(buf); in wpabuf_resize()
69 if (buf->used + add_len > buf->size) { in wpabuf_resize()
71 if (buf->flags & WPABUF_FLAG_EXT_DATA) { in wpabuf_resize()
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Dgstaudioringbuffer.c51 static gboolean gst_audio_ring_buffer_pause_unlocked (GstAudioRingBuffer * buf);
52 static void default_clear_all (GstAudioRingBuffer * buf);
53 static guint default_commit (GstAudioRingBuffer * buf, guint64 * sample,
366 gst_audio_ring_buffer_convert (GstAudioRingBuffer * buf, in gst_audio_ring_buffer_convert() argument
371 GST_OBJECT_LOCK (buf); in gst_audio_ring_buffer_convert()
373 gst_audio_info_convert (&buf->spec.info, src_fmt, src_val, dest_fmt, in gst_audio_ring_buffer_convert()
375 GST_OBJECT_UNLOCK (buf); in gst_audio_ring_buffer_convert()
392 gst_audio_ring_buffer_set_callback (GstAudioRingBuffer * buf, in gst_audio_ring_buffer_set_callback() argument
395 gst_audio_ring_buffer_set_callback_full (buf, cb, user_data, NULL); in gst_audio_ring_buffer_set_callback()
413 gst_audio_ring_buffer_set_callback_full (GstAudioRingBuffer * buf, in gst_audio_ring_buffer_set_callback_full() argument
[all …]
/third_party/lwip/src/api/
Dnetbuf.c65 struct netbuf *buf; in netbuf_new() local
67 buf = (struct netbuf *)memp_malloc(MEMP_NETBUF); in netbuf_new()
68 if (buf != NULL) { in netbuf_new()
69 memset(buf, 0, sizeof(struct netbuf)); in netbuf_new()
71 return buf; in netbuf_new()
81 netbuf_delete(struct netbuf *buf) in netbuf_delete() argument
83 if (buf != NULL) { in netbuf_delete()
84 if (buf->p != NULL) { in netbuf_delete()
85 pbuf_free(buf->p); in netbuf_delete()
86 buf->p = buf->ptr = NULL; in netbuf_delete()
[all …]
/third_party/node/deps/npm/node_modules/from2/node_modules/string_decoder/lib/
Dstring_decoder.js107 StringDecoder.prototype.write = function (buf) { argument
108 if (buf.length === 0) return '';
112 r = this.fillLast(buf);
119 if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
129 StringDecoder.prototype.fillLast = function (buf) { argument
130 if (this.lastNeed <= buf.length) {
131 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
134 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
135 this.lastNeed -= buf.length;
148 function utf8CheckIncomplete(self, buf, i) { argument
[all …]
/third_party/node/deps/npm/node_modules/duplexify/node_modules/string_decoder/lib/
Dstring_decoder.js107 StringDecoder.prototype.write = function (buf) { argument
108 if (buf.length === 0) return '';
112 r = this.fillLast(buf);
119 if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
129 StringDecoder.prototype.fillLast = function (buf) { argument
130 if (this.lastNeed <= buf.length) {
131 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
134 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
135 this.lastNeed -= buf.length;
148 function utf8CheckIncomplete(self, buf, i) { argument
[all …]
/third_party/node/deps/npm/node_modules/through2/node_modules/string_decoder/lib/
Dstring_decoder.js107 StringDecoder.prototype.write = function (buf) { argument
108 if (buf.length === 0) return '';
112 r = this.fillLast(buf);
119 if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
129 StringDecoder.prototype.fillLast = function (buf) { argument
130 if (this.lastNeed <= buf.length) {
131 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
134 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
135 this.lastNeed -= buf.length;
148 function utf8CheckIncomplete(self, buf, i) { argument
[all …]
/third_party/node/deps/npm/node_modules/flush-write-stream/node_modules/string_decoder/lib/
Dstring_decoder.js107 StringDecoder.prototype.write = function (buf) { argument
108 if (buf.length === 0) return '';
112 r = this.fillLast(buf);
119 if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
129 StringDecoder.prototype.fillLast = function (buf) { argument
130 if (this.lastNeed <= buf.length) {
131 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
134 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
135 this.lastNeed -= buf.length;
148 function utf8CheckIncomplete(self, buf, i) { argument
[all …]
/third_party/node/deps/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/lib/
Dstring_decoder.js107 StringDecoder.prototype.write = function (buf) { argument
108 if (buf.length === 0) return '';
112 r = this.fillLast(buf);
119 if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
129 StringDecoder.prototype.fillLast = function (buf) { argument
130 if (this.lastNeed <= buf.length) {
131 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
134 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
135 this.lastNeed -= buf.length;
148 function utf8CheckIncomplete(self, buf, i) { argument
[all …]
/third_party/node/deps/npm/node_modules/are-we-there-yet/node_modules/string_decoder/lib/
Dstring_decoder.js107 StringDecoder.prototype.write = function (buf) { argument
108 if (buf.length === 0) return '';
112 r = this.fillLast(buf);
119 if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
129 StringDecoder.prototype.fillLast = function (buf) { argument
130 if (this.lastNeed <= buf.length) {
131 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
134 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
135 this.lastNeed -= buf.length;
148 function utf8CheckIncomplete(self, buf, i) { argument
[all …]
/third_party/node/deps/npm/node_modules/string_decoder/lib/
Dstring_decoder.js107 StringDecoder.prototype.write = function (buf) { argument
108 if (buf.length === 0) return '';
112 r = this.fillLast(buf);
119 if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
129 StringDecoder.prototype.fillLast = function (buf) { argument
130 if (this.lastNeed <= buf.length) {
131 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
134 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
135 this.lastNeed -= buf.length;
148 function utf8CheckIncomplete(self, buf, i) { argument
[all …]
/third_party/node/deps/npm/node_modules/stream-iterate/node_modules/string_decoder/lib/
Dstring_decoder.js107 StringDecoder.prototype.write = function (buf) { argument
108 if (buf.length === 0) return '';
112 r = this.fillLast(buf);
119 if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
129 StringDecoder.prototype.fillLast = function (buf) { argument
130 if (this.lastNeed <= buf.length) {
131 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
134 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
135 this.lastNeed -= buf.length;
148 function utf8CheckIncomplete(self, buf, i) { argument
[all …]
/third_party/node/deps/npm/node_modules/parallel-transform/node_modules/string_decoder/lib/
Dstring_decoder.js107 StringDecoder.prototype.write = function (buf) { argument
108 if (buf.length === 0) return '';
112 r = this.fillLast(buf);
119 if (i < buf.length) return r ? r + this.text(buf, i) : this.text(buf, i);
129 StringDecoder.prototype.fillLast = function (buf) { argument
130 if (this.lastNeed <= buf.length) {
131 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, this.lastNeed);
134 buf.copy(this.lastChar, this.lastTotal - this.lastNeed, 0, buf.length);
135 this.lastNeed -= buf.length;
148 function utf8CheckIncomplete(self, buf, i) { argument
[all …]

12345678910>>...267