HomeSort by relevance Sort by last modified time
    Searched refs:outbuf (Results 26 - 50 of 221) sorted by null

12 3 4 5 6 7 8 9

  /external/vboot_reference/firmware/lib/
region-kernel.c 190 char outbuf[OUTBUF_LEN]; local
192 *outbuf = '\0';
193 used += StrnAppend(outbuf + used, "gbb.flags is nonzero: 0x",
195 used += Uint64ToString(outbuf + used, OUTBUF_LEN - used,
197 used += StrnAppend(outbuf + used, "\n", OUTBUF_LEN - used);
198 (void)VbExDisplayDebugInfo(outbuf);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
multibytecodec.h 37 unsigned char **outbuf, Py_ssize_t outleft,
43 unsigned char **outbuf, Py_ssize_t outleft);
47 Py_UNICODE **outbuf, Py_ssize_t outleft);
_codecs_jp.c 112 TRYMAP_DEC(cp932ext, **outbuf, c, c2);
122 TRYMAP_DEC(jisx0208, **outbuf, c, c2);
269 EMULATE_JISX0213_2000_DECODE_PLANE2(**outbuf, c2, c3)
270 else TRYMAP_DEC(jisx0213_2_bmp, **outbuf, c2, c3) ;
276 else TRYMAP_DEC(jisx0212, **outbuf, c2, c3) ;
288 EMULATE_JISX0213_2000_DECODE_PLANE1(**outbuf, c, c2)
289 else if (c == 0x21 && c2 == 0x40) **outbuf = 0xff3c;
290 else if (c == 0x22 && c2 == 0x32) **outbuf = 0xff5e;
291 else TRYMAP_DEC(jisx0208, **outbuf, c, c2);
292 else TRYMAP_DEC(jisx0213_1_bmp, **outbuf, c, c2);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
multibytecodec.h 37 unsigned char **outbuf, Py_ssize_t outleft,
43 unsigned char **outbuf, Py_ssize_t outleft);
47 Py_UNICODE **outbuf, Py_ssize_t outleft);
_codecs_jp.c 112 TRYMAP_DEC(cp932ext, **outbuf, c, c2);
122 TRYMAP_DEC(jisx0208, **outbuf, c, c2);
269 EMULATE_JISX0213_2000_DECODE_PLANE2(**outbuf, c2, c3)
270 else TRYMAP_DEC(jisx0213_2_bmp, **outbuf, c2, c3) ;
276 else TRYMAP_DEC(jisx0212, **outbuf, c2, c3) ;
288 EMULATE_JISX0213_2000_DECODE_PLANE1(**outbuf, c, c2)
289 else if (c == 0x21 && c2 == 0x40) **outbuf = 0xff3c;
290 else if (c == 0x22 && c2 == 0x32) **outbuf = 0xff5e;
291 else TRYMAP_DEC(jisx0208, **outbuf, c, c2);
292 else TRYMAP_DEC(jisx0213_1_bmp, **outbuf, c, c2);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_suballoc.c 86 struct pipe_resource **outbuf)
124 pipe_resource_reference(outbuf, allocator->buffer);
130 pipe_resource_reference(outbuf, NULL);
u_upload_mgr.c 185 struct pipe_resource **outbuf,
204 pipe_resource_reference(outbuf, NULL);
222 pipe_resource_reference(outbuf, NULL);
236 pipe_resource_reference(outbuf, upload->buffer);
248 struct pipe_resource **outbuf)
253 out_offset, outbuf,
267 struct pipe_resource **outbuf)
279 pipe_resource_reference(outbuf, NULL);
287 map, out_offset, outbuf);
  /external/python/cpython2/Modules/cjkcodecs/
multibytecodec.h 37 unsigned char **outbuf, Py_ssize_t outleft,
43 unsigned char **outbuf, Py_ssize_t outleft);
47 Py_UNICODE **outbuf, Py_ssize_t outleft);
_codecs_jp.c 112 TRYMAP_DEC(cp932ext, **outbuf, c, c2);
122 TRYMAP_DEC(jisx0208, **outbuf, c, c2);
269 EMULATE_JISX0213_2000_DECODE_PLANE2(**outbuf, c2, c3)
270 else TRYMAP_DEC(jisx0213_2_bmp, **outbuf, c2, c3) ;
276 else TRYMAP_DEC(jisx0212, **outbuf, c2, c3) ;
288 EMULATE_JISX0213_2000_DECODE_PLANE1(**outbuf, c, c2)
289 else if (c == 0x21 && c2 == 0x40) **outbuf = 0xff3c;
290 else if (c == 0x22 && c2 == 0x32) **outbuf = 0xff5e;
291 else TRYMAP_DEC(jisx0208, **outbuf, c, c2);
292 else TRYMAP_DEC(jisx0213_1_bmp, **outbuf, c, c2)
    [all...]
  /external/eigen/bench/
benchFFT.cpp 50 vector<Complex > outbuf(nfft);
64 fft.fwd( outbuf , inbuf);
72 fft.fwd( outbuf , inbuf);
75 fft.inv(inbuf,outbuf);
  /external/icu/icu4c/source/common/
bytestream.cpp 31 CheckedArrayByteSink::CheckedArrayByteSink(char* outbuf, int32_t capacity)
32 : outbuf_(outbuf), capacity_(capacity < 0 ? 0 : capacity),
  /external/curl/lib/vtls/
schannel.c 110 SecBuffer outbuf; local
327 InitSecBuffer(&outbuf, SECBUFFER_EMPTY, NULL, 0);
328 InitSecBufferDesc(&outbuf_desc, &outbuf, 1);
375 "sending %lu bytes...\n", outbuf.cbBuffer);
378 result = Curl_write_plain(conn, conn->sock[sockindex], outbuf.pvBuffer,
379 outbuf.cbBuffer, &written);
380 s_pSecFn->FreeContextBuffer(outbuf.pvBuffer);
381 if((result != CURLE_OK) || (outbuf.cbBuffer != (size_t) written)) {
383 "sent %zd of %lu bytes", written, outbuf.cbBuffer);
409 SecBuffer outbuf[3] local
898 SecBuffer outbuf[4]; local
1403 SecBuffer outbuf; local
    [all...]
  /external/selinux/libselinux/src/
booleans.c 388 char outbuf[BUFSIZ]; local
440 snprintf(outbuf, sizeof(outbuf),
443 len = strlen(outbuf);
445 if (write(fd, outbuf, len) !=
453 snprintf(outbuf, sizeof(outbuf),
455 len = strlen(outbuf);
456 if (write(fd, outbuf, len) != len)
468 snprintf(outbuf, sizeof(outbuf), "%s=%d\n"
    [all...]
  /external/e2fsprogs/misc/
logsave.c 37 static void *outbuf = 0; variable
109 n = realloc(outbuf, outbufsize + c);
111 outbuf = n;
112 memcpy(((char *)outbuf)+outbufsize, buffer, c);
310 if (outbuf) {
327 write_all(outfd, outbuf, outbufsize);
328 free(outbuf);
  /external/vboot_reference/host/lib/
host_key.c 73 uint8_t *outbuf = 0; local
77 buflen = i2d_RSAPrivateKey(key->rsa_private_key, &outbuf);
86 free(outbuf);
93 free(outbuf);
97 if (1 != fwrite(outbuf, buflen, 1, f)) {
101 free(outbuf);
105 free(outbuf);
  /libcore/ojluni/src/main/java/java/security/
SignatureSpi.java 187 * bytes in the provided buffer {@code outbuf}, starting at
202 * @param outbuf buffer for the signature result.
204 * @param offset offset into {@code outbuf} where the signature is
207 * @param len number of bytes within {@code outbuf} allotted for the
216 * @return the number of bytes placed into {@code outbuf}
225 protected int engineSign(byte[] outbuf, int offset, int len)
232 if (outbuf.length - offset < sig.length) {
237 System.arraycopy(sig, 0, outbuf, offset, sig.length);
  /external/syslinux/com32/libupload/
upload_backend.h 28 char *outbuf; member in struct:upload_backend
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_display_virtual.h 58 return (content_list && content_list->numHwLayers > 0 && content_list->outbuf);
  /hardware/qcom/display/sdm845/sdm/libs/hwc/
hwc_display_virtual.h 58 return (content_list && content_list->numHwLayers > 0 && content_list->outbuf);
  /external/vboot_reference/futility/
cmd_gbb_utility.c 366 uint8_t *outbuf = NULL; local
538 outbuf = (uint8_t *) malloc(filesize);
539 if (!outbuf) {
547 /* Switch pointers to outbuf */
548 memcpy(outbuf, inbuf, filesize);
549 gbb = FindGbbHeader(outbuf, filesize);
552 "INTERNAL ERROR: No GBB found in outbuf\n");
604 outfile, outbuf, filesize);
619 outbuf = create_gbb(opt_create, &filesize);
620 if (!outbuf) {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureTest.java 238 byte[] outbuf = new byte [10];
240 s.sign(outbuf, 0, outbuf.length);
248 s.sign(outbuf, 0, outbuf.length);
254 assertEquals(s.getBufferLength(), s.sign(outbuf, 0, outbuf.length));
260 s.sign(outbuf, outbuf.length, 0);
268 s.sign(outbuf, outbuf.length, 3)
    [all...]
  /external/libxml2/os400/iconv/
iconv.c 128 char * * outbuf, size_t * outbytesleft)
136 return iconv(*(iconv_t *) cd, inbuf, inbytesleft, outbuf, outbytesleft);
  /external/selinux/policycoreutils/run_init/
open_init_pty.c 221 struct ring_buffer outbuf; local
223 rb_init(&outbuf, outbuf_mem, sizeof(outbuf_mem));
299 if (rb_space(&outbuf) > 0 && err_n_rpty < MAXRETR) {
314 if (!rb_isempty(&outbuf) && err_n_stdout < MAXRETR) {
344 ssize_t n = rb_write(&outbuf, STDOUT_FILENO);
389 ssize_t n = rb_read(&outbuf, pty_master);
405 || !(rb_isempty(&outbuf) || err_n_stdout >= MAXRETR));
408 fprintf(stderr, "inbuf: %u bytes left, outbuf: %u bytes left\n", inbuf.count, outbuf.count);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
timemodule.c 399 char *outbuf = 0; local
483 for(outbuf = strchr(fmt, '%');
484 outbuf != NULL;
485 outbuf = strchr(outbuf+2, '%'))
487 if (outbuf[1]=='#')
488 ++outbuf; /* not documented by python, */
489 if (outbuf[1]=='\0' ||
490 !strchr("aAbBcdHIjmMpSUwWxXyYzZ%", outbuf[1]))
504 outbuf = (char *)malloc(i);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
timemodule.c 399 char *outbuf = 0; local
483 for(outbuf = strchr(fmt, '%');
484 outbuf != NULL;
485 outbuf = strchr(outbuf+2, '%'))
487 if (outbuf[1]=='#')
488 ++outbuf; /* not documented by python, */
489 if (outbuf[1]=='\0' ||
490 !strchr("aAbBcdHIjmMpSUwWxXyYzZ%", outbuf[1]))
504 outbuf = (char *)malloc(i);
    [all...]

Completed in 840 milliseconds

12 3 4 5 6 7 8 9