/external/icu4c/common/ |
utrace.c | 88 static void outputChar(char c, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { 100 (c!='\n' && c!=0 && *outIx < capacity && outBuf[(*outIx)-1]=='\n') || /* case 2. */ 106 outBuf[*outIx] = ' '; 113 outBuf[*outIx] = c; 124 char *outBuf, int32_t *outIx, int32_t capacity) { 129 outputChar(c, outBuf, outIx, capacity, 0); 134 static void outputPtrBytes(void *val, char *outBuf, int32_t *outIx, int32_t capacity) { 148 outputHexBytes(*p, 2, outBuf, outIx, capacity); 153 static void outputString(const char *s, char *outBuf, int32_t *outIx, int32_t capacity, int32_t indent) { 161 outputChar(c, outBuf, outIx, capacity, indent) [all...] |
bytestream.cpp | 27 CheckedArrayByteSink::CheckedArrayByteSink(char* outbuf, int32_t capacity) 28 : outbuf_(outbuf), capacity_(capacity < 0 ? 0 : capacity),
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
lbximage.h | 49 unsigned char * /* outbuf */, 60 unsigned char * /* outbuf */, 87 char * /* outbuf */, 98 char * /* outbuf */, 108 char * /* outbuf */, 119 unsigned char * /* outbuf */, 130 char * /* outbuf */, 137 unsigned char * /* outbuf */,
|
/external/qemu/hw/ |
scsi-disk.c | 357 uint8_t *outbuf; local 369 outbuf = (uint8_t *)r->iov.iov_base; 429 memset(outbuf, 0, 4); 432 memset(outbuf, 0, 18); 434 outbuf[7] = 10; 436 outbuf[12] = 0x3a; 437 outbuf[13] = 0; 439 outbuf[0] = 0xf0; 440 outbuf[1] = 0; 441 outbuf[2] = s->sense [all...] |
/external/apache-harmony/crypto/src/test/impl/java.injected/org/apache/harmony/crypto/internal/ |
NullCipherSpiTest.java | 113 ByteBuffer outbuf = ByteBuffer.allocate(6); local 116 spi.engineUpdate(null, outbuf); 131 int result = spi.engineUpdate(inbuf, outbuf); 134 assertEquals("incorrect outbuf", i + 4, outbuf.get(i)); 138 outbuf = ByteBuffer.allocate(5); 144 spi.engineUpdate(inbuf, outbuf); 158 ByteBuffer outbuf = ByteBuffer.allocate(6); local 161 spi.engineDoFinal(null, outbuf); 176 int result = spi.engineDoFinal(inbuf, outbuf); [all...] |
/external/llvm/test/Transforms/GVN/ |
lpre-call-wrap-2.ll | 6 ; void bi_windup(unsigned char *outbuf, unsigned char bi_buf) { 7 ; outbuf[outcnt] = bi_buf; 10 ; outbuf[outcnt] = bi_buf; 16 define void @bi_windup(i8* %outbuf, i8 zeroext %bi_buf) nounwind { 20 %1 = getelementptr i8* %outbuf, i32 %0 ; <i8*> [#uses=1] 35 %5 = getelementptr i8* %outbuf, i32 %4 ; <i8*> [#uses=1]
|
/external/zlib/contrib/delphi/ |
ZLib.pas | 131 Out: OutBuf = ptr to newly allocated buffer containing decompressed data 132 OutBytes = number of bytes in OutBuf } 134 out OutBuf: Pointer; out OutBytes: Integer); 141 Out: OutBuf = ptr to newly allocated buffer containing decompressed data 142 OutBytes = number of bytes in OutBuf } 144 OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer); 149 Out: OutBuf = ptr to user-allocated buffer to contain decompressed data 150 BufSize = number of bytes in OutBuf } 152 const OutBuf: Pointer; BufSize: Integer); 287 out OutBuf: Pointer; out OutBytes: Integer) [all...] |
/external/openssl/crypto/des/ |
enc_writ.c | 93 static unsigned char *outbuf=NULL; 99 if (outbuf == NULL) 101 outbuf=OPENSSL_malloc(BSIZE+HDRSIZE); 102 if (outbuf == NULL) return(-1); 128 p=outbuf; 146 DES_pcbc_encrypt(cp,&(outbuf[HDRSIZE]),(len<8)?8:len,sched,iv, 149 DES_cbc_encrypt(cp,&(outbuf[HDRSIZE]),(len<8)?8:len,sched,iv, 160 i=write(fd,(void *)&(outbuf[j]),outnum-j); 162 i=_write(fd,(void *)&(outbuf[j]),outnum-j);
|
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/ |
GZIPInputStreamTest.java | 126 byte outBuf[] = new byte[100]; 139 result += inGZIP.read(outBuf, result, outBuf.length - result); 147 orgBuf[i], outBuf[i]); 148 // System.out.println(orgBuf[i] + " " + outBuf[i]); 152 inGZIP.read(outBuf, 100, 1); 219 outBuf = new byte[530]; 222 in.read(outBuf, 530, 1); 227 result = in.read(outBuf, 0, 5); 235 result = in.read(outBuf, -100, 1) [all...] |
/external/qemu/ |
monitor-android.h | 42 mon->fake_func(mon->fake_opaque, (void*)mon->outbuf, mon->outbuf_index); 46 qemu_chr_write(mon->chr, mon->outbuf, mon->outbuf_index);
|
/external/bluetooth/glib/tests/ |
markup-escape-test.c | 34 gchar outbuf[7], expected[12]; local 36 len = g_unichar_to_utf8 (c, outbuf); 37 outbuf[len] = 0; 42 strcpy (expected, outbuf); 44 test (outbuf, expected);
|
/external/valgrind/main/callgrind/ |
dump.c | 58 static Char outbuf[FILENAME_LEN + FN_NAME_LEN + OBJ_NAME_LEN + COSTS_LEN]; variable 346 VG_(sprintf)(outbuf, "rec=%d\n\n", bbcc->rec_index); 347 my_fwrite(fd, (void*)outbuf, VG_(strlen)(outbuf)); 361 VG_(sprintf)(outbuf, "frfn=(spontaneous)\n"); 362 my_fwrite(fd, (void*)outbuf, VG_(strlen)(outbuf)); 367 print_fn(fd,outbuf,"frfn", curr_from); 375 VG_(sprintf)(outbuf, "ob="); 376 print_obj(outbuf+3, bbcc->cxt->fn[0]->file->obj) [all...] |
/external/e2fsprogs/misc/ |
logsave.c | 36 void *outbuf = 0; variable 108 n = realloc(outbuf, outbufsize + c); 110 outbuf = n; 111 memcpy(((char *)outbuf)+outbufsize, buffer, c); 308 if (outbuf) { 325 write_all(outfd, outbuf, outbufsize); 326 free(outbuf);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/gconv/ |
EUC-KR.so | |
GBGBK.so | |
TSCII.so | |
UTF-16.so | |
/external/chromium/third_party/libevent/ |
buffer.c | 100 evbuffer_add_buffer(struct evbuffer *outbuf, struct evbuffer *inbuf) 105 if (outbuf->off == 0) { 110 SWAP(&tmp, outbuf); 111 SWAP(outbuf, inbuf); 117 * of data that we transfered from inbuf to outbuf 121 if (oldoff && outbuf->cb != NULL) 122 (*outbuf->cb)(outbuf, 0, oldoff, outbuf->cbarg); 127 res = evbuffer_add(outbuf, inbuf->buffer, inbuf->off) [all...] |
/external/svox/pico/lib/ |
picowa.c | 62 picoos_uint8 outBuf[PICOWA_MAXITEMSIZE]; /* internal output buffer */ 64 picoos_uint16 outLen; /* length of item in outBuf, 0 for empty buf */ 293 wa->outBuf, wa->outBufSize, 297 if (PICO_OK != picodata_set_iteminfo1(wa->outBuf, wa->outLen, 331 wa->outBuf, wa->outBufSize, 341 wa->outBuf, wa->outBufSize, 345 if (PICO_OK != picodata_set_iteminfo1(wa->outBuf, wa->outLen, 437 * result in internal outBuf 472 wa->inLen, wa->outBuf, 492 /* PICO_EXC_BUF_OVERFLOW <- overflow in outbuf [all...] |
picotok.c | 248 picoos_uint8 outBuf[OUT_BUF_SIZE]; /* internal output buffer */ 249 picoos_uint16 outReadPos; /* next pos to read from outBuf */ 250 picoos_uint16 outWritePos; /* next pos to write to outBuf */ 490 tok->outBuf[tok->outWritePos++] = itemType; 491 tok->outBuf[tok->outWritePos++] = info1; 492 tok->outBuf[tok->outWritePos++] = info2; 493 tok->outBuf[tok->outWritePos++] = 0; 509 tok->outBuf[tok->outWritePos++] = itemType; 510 tok->outBuf[tok->outWritePos++] = info1; 511 tok->outBuf[tok->outWritePos++] = info2 [all...] |
/system/core/liblog/ |
logprint.c | 417 char* outBuf = *pOutBuf; 442 outCount = snprintf(outBuf, outBufLen, "%d", ival); 444 outBuf += outCount; 463 outCount = snprintf(outBuf, outBufLen, "%lld", lval); 465 outBuf += outCount; 488 memcpy(outBuf, eventData, strLen); 489 outBuf += strLen; 493 memcpy(outBuf, eventData, outBufLen); 494 outBuf += outBufLen; 515 *outBuf++ = '[' [all...] |
/frameworks/base/media/jni/ |
android_media_AmrInputStream.cpp | 76 jbyte outBuf[MAX_OUTPUT_BUFFER_SIZE]; 83 (unsigned char *) outBuf, 99 outBuf[0] = (outBuf[0] << 3) | 0x4; 102 env->SetByteArrayRegion(amr, amrOffset, length, outBuf);
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
OldAndroidDeflateTest.java | 126 private void compress(Deflater deflater, byte[] inBuf, byte[] outBuf) { 154 compCount = deflater.deflate(outBuf, outPosn, LOCAL_BUF_SIZE); 162 * Expand data from "inBuf" to "outBuf". Uses a small window to better 166 byte[] outBuf) throws DataFormatException { 190 compCount = inflater.inflate(outBuf, outPosn, LOCAL_BUF_SIZE);
|
/external/bluetooth/bluez/audio/ |
gstrtpsbcpay.c | 168 GstBuffer *outbuf; local 191 outbuf = gst_rtp_buffer_new_allocate(payload_length + 194 gst_rtp_buffer_set_payload_type(outbuf, 197 payload_data = gst_rtp_buffer_get_payload(outbuf); 206 GST_BUFFER_TIMESTAMP(outbuf) = sbcpay->timestamp; 209 return gst_basertppayload_push(GST_BASE_RTP_PAYLOAD(sbcpay), outbuf);
|
/external/bison/m4/ |
iconv.m4 | 89 size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); 94 am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"])
|