Searched refs:out_buf (Results 1 - 25 of 48) sorted by relevance

12

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_index_modify.h39 struct pipe_resource **out_buf,
54 struct pipe_resource **out_buf,
68 struct pipe_resource **out_buf,
H A Du_index_modify.c63 struct pipe_resource **out_buf,
83 pipe_resource_reference(out_buf, NULL);
84 *out_buf = new_elts;
123 struct pipe_resource **out_buf,
142 pipe_resource_reference(out_buf, NULL);
143 *out_buf = new_elts;
182 struct pipe_resource **out_buf,
201 pipe_resource_reference(out_buf, NULL);
202 *out_buf = new_elts;
61 util_shorten_ubyte_elts(struct pipe_context *context, struct pipe_index_buffer *ib, struct pipe_resource **out_buf, int index_bias, unsigned start, unsigned count) argument
121 util_rebuild_ushort_elts(struct pipe_context *context, struct pipe_index_buffer *ib, struct pipe_resource **out_buf, int index_bias, unsigned start, unsigned count) argument
180 util_rebuild_uint_elts(struct pipe_context *context, struct pipe_index_buffer *ib, struct pipe_resource **out_buf, int index_bias, unsigned start, unsigned count) argument
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_index_modify.h39 struct pipe_resource **out_buf,
54 struct pipe_resource **out_buf,
68 struct pipe_resource **out_buf,
H A Du_index_modify.c63 struct pipe_resource **out_buf,
83 pipe_resource_reference(out_buf, NULL);
84 *out_buf = new_elts;
123 struct pipe_resource **out_buf,
142 pipe_resource_reference(out_buf, NULL);
143 *out_buf = new_elts;
182 struct pipe_resource **out_buf,
201 pipe_resource_reference(out_buf, NULL);
202 *out_buf = new_elts;
61 util_shorten_ubyte_elts(struct pipe_context *context, struct pipe_index_buffer *ib, struct pipe_resource **out_buf, int index_bias, unsigned start, unsigned count) argument
121 util_rebuild_ushort_elts(struct pipe_context *context, struct pipe_index_buffer *ib, struct pipe_resource **out_buf, int index_bias, unsigned start, unsigned count) argument
180 util_rebuild_uint_elts(struct pipe_context *context, struct pipe_index_buffer *ib, struct pipe_resource **out_buf, int index_bias, unsigned start, unsigned count) argument
/external/chromium_org/third_party/webrtc/base/
H A Dschanneladapter.cc481 CSecBufferBundle<4> out_buf; local
482 out_buf[0].BufferType = SECBUFFER_STREAM_HEADER;
483 out_buf[0].cbBuffer = impl_->sizes.cbHeader;
484 out_buf[1].BufferType = SECBUFFER_DATA;
485 out_buf[1].cbBuffer = static_cast<unsigned long>(encrypt_len);
486 out_buf[2].BufferType = SECBUFFER_STREAM_TRAILER;
487 out_buf[2].cbBuffer = impl_->sizes.cbTrailer;
489 size_t packet_len = out_buf[0].cbBuffer
490 + out_buf[1].cbBuffer
491 + out_buf[
[all...]
/external/chromium_org/net/http/
H A Dhttp_auth_handler_ntlm.cc47 // out_buf. This change will need to propagate to GetNextToken,
50 void* out_buf;
86 int rv = GetNextToken(in_buf, in_buf_len, &out_buf, &out_buf_len);
91 std::string encode_input(static_cast<char*>(out_buf), out_buf_len);
94 // OK, we are done with |out_buf|
95 free(out_buf);
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_tnc.c24 struct wpabuf *out_buf; member in struct:eap_tnc_data
98 wpabuf_free(data->out_buf);
227 send_len = wpabuf_len(data->out_buf) - data->out_used;
247 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
249 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
253 if (data->out_used == wpabuf_len(data->out_buf)) {
257 wpabuf_free(data->out_buf);
258 data->out_buf = NULL;
267 (unsigned long) wpabuf_len(data->out_buf) -
289 if (data->out_buf
[all...]
H A Deap_server_ikev2.c21 struct wpabuf *out_buf; member in struct:eap_ikev2_data
128 wpabuf_free(data->out_buf);
143 send_len = wpabuf_len(data->out_buf) - data->out_used;
178 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
180 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
193 if (data->out_used == wpabuf_len(data->out_buf)) {
197 wpabuf_free(data->out_buf);
198 data->out_buf = NULL;
203 (unsigned long) wpabuf_len(data->out_buf) -
218 if (data->out_buf
[all...]
H A Deap_server_wsc.c23 struct wpabuf *out_buf; member in struct:eap_wsc_data
159 wpabuf_free(data->out_buf);
193 send_len = wpabuf_len(data->out_buf) - data->out_used;
216 wpabuf_put_be16(req, wpabuf_len(data->out_buf));
218 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
222 if (data->out_used == wpabuf_len(data->out_buf)) {
226 wpabuf_free(data->out_buf);
227 data->out_buf = NULL;
233 (unsigned long) wpabuf_len(data->out_buf) -
250 if (data->out_buf
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_tnc.c24 struct wpabuf *out_buf; member in struct:eap_tnc_data
98 wpabuf_free(data->out_buf);
227 send_len = wpabuf_len(data->out_buf) - data->out_used;
247 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
249 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
253 if (data->out_used == wpabuf_len(data->out_buf)) {
257 wpabuf_free(data->out_buf);
258 data->out_buf = NULL;
267 (unsigned long) wpabuf_len(data->out_buf) -
289 if (data->out_buf
[all...]
H A Deap_server_ikev2.c21 struct wpabuf *out_buf; member in struct:eap_ikev2_data
128 wpabuf_free(data->out_buf);
143 send_len = wpabuf_len(data->out_buf) - data->out_used;
178 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
180 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
193 if (data->out_used == wpabuf_len(data->out_buf)) {
197 wpabuf_free(data->out_buf);
198 data->out_buf = NULL;
203 (unsigned long) wpabuf_len(data->out_buf) -
218 if (data->out_buf
[all...]
H A Deap_server_wsc.c23 struct wpabuf *out_buf; member in struct:eap_wsc_data
159 wpabuf_free(data->out_buf);
193 send_len = wpabuf_len(data->out_buf) - data->out_used;
216 wpabuf_put_be16(req, wpabuf_len(data->out_buf));
218 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
222 if (data->out_used == wpabuf_len(data->out_buf)) {
226 wpabuf_free(data->out_buf);
227 data->out_buf = NULL;
233 (unsigned long) wpabuf_len(data->out_buf) -
250 if (data->out_buf
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_tnc.c24 struct wpabuf *out_buf; member in struct:eap_tnc_data
98 wpabuf_free(data->out_buf);
227 send_len = wpabuf_len(data->out_buf) - data->out_used;
247 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
249 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
253 if (data->out_used == wpabuf_len(data->out_buf)) {
257 wpabuf_free(data->out_buf);
258 data->out_buf = NULL;
267 (unsigned long) wpabuf_len(data->out_buf) -
289 if (data->out_buf
[all...]
H A Deap_server_ikev2.c21 struct wpabuf *out_buf; member in struct:eap_ikev2_data
128 wpabuf_free(data->out_buf);
143 send_len = wpabuf_len(data->out_buf) - data->out_used;
178 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
180 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
193 if (data->out_used == wpabuf_len(data->out_buf)) {
197 wpabuf_free(data->out_buf);
198 data->out_buf = NULL;
203 (unsigned long) wpabuf_len(data->out_buf) -
218 if (data->out_buf
[all...]
H A Deap_server_wsc.c23 struct wpabuf *out_buf; member in struct:eap_wsc_data
159 wpabuf_free(data->out_buf);
193 send_len = wpabuf_len(data->out_buf) - data->out_used;
216 wpabuf_put_be16(req, wpabuf_len(data->out_buf));
218 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
222 if (data->out_used == wpabuf_len(data->out_buf)) {
226 wpabuf_free(data->out_buf);
227 data->out_buf = NULL;
233 (unsigned long) wpabuf_len(data->out_buf) -
250 if (data->out_buf
[all...]
/external/openssl/apps/
H A Dpasswd.c312 static char out_buf[6 + 9 + 24 + 2]; /* "$apr1$..salt..$.......md5hash..........\0" */ local
321 out_buf[0] = '$';
322 out_buf[1] = 0;
324 strncat(out_buf, magic, 4);
325 strncat(out_buf, "$", 1);
326 strncat(out_buf, salt, 8);
327 assert(strlen(out_buf) <= 6 + 8); /* "$apr1$..salt.." */
328 salt_out = out_buf + 2 + strlen(magic);
391 assert(output == out_buf + strlen(out_buf));
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_ikev2.c21 struct wpabuf *out_buf; member in struct:eap_ikev2_data
114 wpabuf_free(data->out_buf);
148 send_len = wpabuf_len(data->out_buf) - data->out_used;
183 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
185 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
201 if (data->out_used == wpabuf_len(data->out_buf)) {
205 wpabuf_free(data->out_buf);
206 data->out_buf = NULL;
237 (unsigned long) wpabuf_len(data->out_buf) -
417 if (data->out_buf
[all...]
H A Deap_tnc.c20 struct wpabuf *out_buf; member in struct:eap_tnc_data
59 wpabuf_free(data->out_buf);
95 send_len = wpabuf_len(data->out_buf) - data->out_used;
115 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
117 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
124 if (data->out_used == wpabuf_len(data->out_buf)) {
128 wpabuf_free(data->out_buf);
129 data->out_buf = NULL;
134 (unsigned long) wpabuf_len(data->out_buf) -
348 if (data->out_buf) {
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_ikev2.c21 struct wpabuf *out_buf; member in struct:eap_ikev2_data
114 wpabuf_free(data->out_buf);
148 send_len = wpabuf_len(data->out_buf) - data->out_used;
183 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
185 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
201 if (data->out_used == wpabuf_len(data->out_buf)) {
205 wpabuf_free(data->out_buf);
206 data->out_buf = NULL;
237 (unsigned long) wpabuf_len(data->out_buf) -
417 if (data->out_buf
[all...]
H A Deap_tnc.c20 struct wpabuf *out_buf; member in struct:eap_tnc_data
59 wpabuf_free(data->out_buf);
95 send_len = wpabuf_len(data->out_buf) - data->out_used;
115 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
117 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
124 if (data->out_used == wpabuf_len(data->out_buf)) {
128 wpabuf_free(data->out_buf);
129 data->out_buf = NULL;
134 (unsigned long) wpabuf_len(data->out_buf) -
348 if (data->out_buf) {
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_ikev2.c21 struct wpabuf *out_buf; member in struct:eap_ikev2_data
114 wpabuf_free(data->out_buf);
148 send_len = wpabuf_len(data->out_buf) - data->out_used;
183 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
185 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
201 if (data->out_used == wpabuf_len(data->out_buf)) {
205 wpabuf_free(data->out_buf);
206 data->out_buf = NULL;
237 (unsigned long) wpabuf_len(data->out_buf) -
417 if (data->out_buf
[all...]
H A Deap_tnc.c20 struct wpabuf *out_buf; member in struct:eap_tnc_data
59 wpabuf_free(data->out_buf);
95 send_len = wpabuf_len(data->out_buf) - data->out_used;
115 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
117 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
124 if (data->out_used == wpabuf_len(data->out_buf)) {
128 wpabuf_free(data->out_buf);
129 data->out_buf = NULL;
134 (unsigned long) wpabuf_len(data->out_buf) -
348 if (data->out_buf) {
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_draw_arrays.c46 struct pipe_resource **out_buf )
71 *out_buf = dst;
100 struct pipe_resource **out_buf )
111 pipe_resource_reference( out_buf,
168 out_buf );
176 *out_buf );
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_draw_arrays.c46 struct pipe_resource **out_buf )
71 *out_buf = dst;
100 struct pipe_resource **out_buf )
111 pipe_resource_reference( out_buf,
168 out_buf );
176 *out_buf );
/external/chromium_org/third_party/boringssl/src/crypto/bytestring/
H A Dbytestring_test.c180 uint8_t *out_buf; local
185 !CBB_finish(&cbb, &out_buf, &out_size) ||
186 out_buf != NULL ||
194 !CBB_finish(&cbb, &out_buf, &out_size) ||
195 out_buf != buf ||
206 uint8_t *out_buf; local
211 CBB_finish(&child, &out_buf, &out_size) ||
212 !CBB_finish(&cbb, &out_buf, &out_size) ||
214 out_buf[0] != 0) {
218 free(out_buf);
[all...]

Completed in 938 milliseconds

12