HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1401 - 1425 of 3019) sorted by null

<<51525354555657585960>>

  /external/stlport/src/c_locale_win32/
c_wlocale_win32.c 38 WORD out[2]; local
40 GetStringTypeW(CT_CTYPE1, buf, -1, out);
42 return (_Locale_mask_t)(MapCtypeMask(out[0]) & which_bits);
  /external/stlport/src/
ios.cpp 74 const ios_base::openmode ios_base::out; member in class:ios_base
  /external/tremolo/Tremolo/
codebook.c 30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
270 unsigned char *out=(unsigned char *)s->dec_table; local
276 out[top]=(work[i]>>8 & 0x7f)|0x80;
277 out[top+1]=(work[i+1]>>8 & 0x7f)|0x80;
278 out[top+2]=work[i] & 0xff;
279 out[top+3]=work[i+1] & 0xff;
282 out[top]=(work[i]>>8 & 0x7f)|0x80;
283 out[top+1]=work[work[i+1]*2];
284 out[top+2]=work[i] & 0xff;
289 out[top]=work[work[i]*2]
301 ogg_uint16_t *out=(ogg_uint16_t *)s->dec_table; local
    [all...]
  /external/vixl/test/
test-simulator-a64.cc 24 // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
185 Register out = x0; local
196 __ Mov(out, results);
205 __ Str(fd, MemOperand(out, fd.SizeInBytes(), PostIndex));
286 Register out = x0; local
300 __ Mov(out, results);
313 __ Str(fd, MemOperand(out, fd.SizeInBytes(), PostIndex));
403 Register out = x0; local
419 __ Mov(out, results);
436 __ Str(fd, MemOperand(out, fd.SizeInBytes(), PostIndex))
535 Register out = x0; local
661 Register out = x0; local
775 Register out = x0; local
    [all...]
  /external/webp/src/dsp/
lossless_neon.c 234 const uint8x8_t out = vqmovn_u16(sum1); // narrow and clamp local
235 return vget_lane_u32(vreinterpret_u32_u8(out), 0);
251 const uint8x8_t out = vqsub_u8(vqadd_u8(avg, ab), ba); local
252 return vget_lane_u32(vreinterpret_u32_u8(out), 0);
  /external/wpa_supplicant_8/hs20/client/
est.c 34 BIO *out = NULL; local
71 out = BIO_new(BIO_s_file());
72 if (out == NULL ||
73 BIO_write_filename(out, pem_file) <= 0)
78 X509_print(out, cert);
79 PEM_write_bio_X509(out, cert);
80 BIO_puts(out, "\n");
88 if (out)
89 BIO_free_all(out);
342 BIO *out; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_internal.c 328 u8 *out, size_t out_len)
334 out, out_len);
341 out, out_len);
367 struct wpabuf *out; local
379 out = wpabuf_alloc_ext_data(res, res_len);
380 if (out == NULL) {
395 return out;
410 struct wpabuf *out; local
424 out = wpabuf_alloc_ext_data(res, res_len);
425 if (out == NULL)
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.c 313 u8 *rnd = NULL, *out; local
315 out = os_malloc(len);
316 if (out == NULL)
320 if (tls_connection_prf(data->ssl_ctx, data->conn, label, 0, out, len)
322 return out;
346 keys.server_random_len, out, len))
350 return out;
354 os_free(out);
378 u8 *out; local
392 out = os_malloc(*len)
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_server_read.c 487 u8 *out; local
510 out = os_malloc(outlen >= TLS_PRE_MASTER_SECRET_LEN ?
512 if (out == NULL) {
538 out, &outlen) < 0) {
551 if (!use_random && WPA_GET_BE16(out) != conn->client_version) {
560 if (os_get_random(out, outlen)) {
565 os_free(out);
570 res = tlsv1_server_derive_keys(conn, out, outlen);
573 os_memset(out, 0, outbuflen);
574 os_free(out);
    [all...]
  /external/zlib/src/contrib/blast/
blast.c 52 unsigned next; /* index of next write location in out[] */
54 unsigned char out[MAXWIN]; /* output buffer and sliding window */ member in struct:state
77 if (s->left == 0) longjmp(s->env, 1); /* out of input */
161 if (s->left == 0) longjmp(s->env, 1); /* out of input */
167 return -9; /* ran out of codes */
343 to = s->out + s->next;
358 if (s->outfun(s->outhow, s->out, s->next)) return 1;
367 s->out[s->next++] = symbol;
369 if (s->outfun(s->outhow, s->out, s->next)) return 1;
404 if (err != 1 && s.next && s.outfun(s.outhow, s.out, s.next) && err == 0
    [all...]
  /external/zlib/src/contrib/inflate86/
inffast.S 173 #define out 60 /* unsigned char* */ define
243 * out = strm->next_out;
245 * beg = out - (start - strm->avail_out);
246 * end = out + (strm->avail_out - 257);
266 addl %ebx, %ecx /* avail_out += out */
268 movl %ebx, out(%esp)
351 movl out(%esp), out_r
426 /* while (in < last && out < end)
429 jbe .L_break_loop /* if (out >= end) */
435 /* regs: %esi = in, %ebp = hold, %bl = bits, %edi = out
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 75 * - Break out test code to separate file
100 unsigned char *out; /* output buffer */ member in struct:state
101 unsigned long outlen; /* available space at out */
102 unsigned long outcnt; /* bytes written to out so far */
134 longjmp(s->env, 1); /* out of input */
181 /* copy len bytes from in to out */
184 if (s->out != NIL) {
188 s->out[s->outcnt++] = s->in[s->incnt++];
254 return -10; /* ran out of codes */
299 longjmp(s->env, 1); /* out of input *
    [all...]
  /external/zlib/src/examples/
gun.c 114 /* structure for infback() to pass to output function out() -- it maintains the
128 On success out() returns 0. For a write failure, out() returns 1. If the
131 local int out(void *out_desc, unsigned char *buf, unsigned len) function
168 /* throw out what's left in the current bits byte buffer (this is a vestigial
235 strm->msg = (char *)"lzw bits out of range";
281 if (outcnt && out(&outd, outbuf, outcnt)) {
353 if (out(&outd, outbuf, outcnt)) {
377 The return value is a zlib error code: Z_MEM_ERROR if out of memory,
475 ret = inflateBack(strm, in, indp, out, &outd)
    [all...]
gzappend.c 273 if (gz.buf == NULL) bye("out of memory", "");
282 if (window == NULL) bye("out of memory", "");
287 if (ret != Z_OK) bye("out of memory", " or library mismatch");
312 if (ret == Z_MEM_ERROR) bye("out of memory", "");
369 if (ret != Z_OK) bye("out of memory", "");
392 unsigned char *in, *out; local
405 out = malloc(CHUNK);
406 if (in == NULL || out == NULL) bye("out of memory", "");
425 strm->next_out = out;
    [all...]
  /external/zlib/src/
gzguts.h 174 unsigned char *out; /* output buffer (double-sized when reading) */ member in struct:__anon17522
inflate.c 48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
308 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
323 a.out > inffixed.h
615 unsigned in, out; /* save starting available input and output */ local
636 out = left;
    [all...]
  /external/zlib/src/test/
infcover.c 243 data is allocated and must eventually be freed. NULL is returned if out of
289 unsigned char *in, *out; local
301 out = malloc(len); assert(out != NULL);
303 head.extra = out;
305 head.name = out;
307 head.comment = out;
319 strm.next_out = out;
327 ret = inflateSetDictionary(&strm, out, 0);
331 ret = inflateSetDictionary(&strm, out, 0)
511 unsigned char *in, *out, *win; local
    [all...]
minigzip.c 242 unsigned char out[BUFLEN]; local
250 strm->next_out = out;
253 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
301 unsigned char out[BUFLEN]; local
310 strm->next_out = out;
313 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
339 void gz_compress OF((FILE *in, gzFile out));
341 int gz_compress_mmap OF((FILE *in, gzFile out));
343 void gz_uncompress OF((gzFile in, FILE *out));
362 void gz_compress(in, out)
463 gzFile out; local
501 FILE *out; local
    [all...]
  /external/zopfli/src/zopflipng/
zopflipng_lib.cc 42 unsigned CustomPNGDeflate(unsigned char** out, size_t* outsize,
59 ZopfliDeflate(&options, 2 /* Dynamic */, 1, in, insize, &bp, out, outsize);
66 free(*out);
67 *out = out2;
76 ZopfliDeflate(&options, 2 /* Dynamic */, 1, in, insize, &bp, out, outsize);
182 std::vector<unsigned char>* out) {
239 error = lodepng::encode(*out, image, w, h, state);
243 if (!error && out->size() < 4096) {
246 lodepng::decode(temp, w, h, teststate, *out);
262 if (out2.size() < out->size()) out->swap(out2)
284 std::vector<unsigned char> out; local
    [all...]
  /frameworks/av/camera/
ICameraService.cpp 137 CameraMetadata out; local
139 out.readFromParcel(&reply);
143 cameraInfo->swap(out);
150 virtual status_t getCameraVendorTagDescriptor(/*out*/sp<VendorTagDescriptor>& desc) {
160 if (VendorTagDescriptor::createFromParcel(&reply, /*out*/d) == OK) {
170 /*out*/
193 /*out*/sp<ICamera>& device)
215 /*out*/
240 /*out*/
352 // out-variables are after exception and return valu
    [all...]
  /frameworks/av/camera/camera2/
ICameraDeviceUser.cpp 233 /*out*/
244 CameraMetadata out; local
246 out.readFromParcel(&reply);
250 request->swap(out);
265 CameraMetadata out; local
267 out.readFromParcel(&reply);
271 info->swap(out);
444 // out-variables are after exception and return value
460 // out-variables are after exception and return value
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerCCDecoder.cpp 55 AString out; local
103 if (out.size() > 0) {
104 out.append(", ");
107 out.append(tmp);
112 ALOGI("%s", out.c_str());
241 AString out; local
NuPlayerDriver.cpp 619 FILE *out = fdopen(dup(fd), "w"); local
621 fprintf(out, " NuPlayer\n");
622 fprintf(out, " numFramesTotal(%" PRId64 "), numFramesDropped(%" PRId64 "), "
629 fclose(out);
630 out = NULL;
661 // The renderer has stopped the sink at the end in order to play out
  /frameworks/av/media/libstagefright/
MetaData.cpp 307 String8 out; local
311 out = String8::format("no type, size %zu)", mSize);
314 out = String8::format("(char*) %s", (const char *)data);
317 out = String8::format("(int32_t) %d", *(int32_t *)data);
320 out = String8::format("(int64_t) %" PRId64, *(int64_t *)data);
323 out = String8::format("(float) %f", *(float *)data);
326 out = String8::format("(void*) %p", *(void **)data);
331 out = String8::format("Rect(%d, %d, %d, %d)",
337 out = String8::format("(unknown type %d, size %zu)", mType, mSize);
341 out.append("\n")
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/
SoftAACEncoder.cpp 401 uint8_t *out = outHeader->pBuffer + outHeader->nOffset; local
402 memcpy(out, mAudioSpecificConfigData, sizeof(mAudioSpecificConfigData));
406 hexdump(out, sizeof(mAudioSpecificConfigData));
420 // We do the following until we run out of buffers.

Completed in 54 milliseconds

<<51525354555657585960>>