HomeSort by relevance Sort by last modified time
    Searched full:outbuf (Results 1 - 25 of 276) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 29 CheckedArrayByteSink::CheckedArrayByteSink(char* outbuf, int32_t capacity)
30 : outbuf_(outbuf), capacity_(capacity < 0 ? 0 : capacity),
  /prebuilts/gcc/linux-x86/host/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 */,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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 */,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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/openssh/
rsa.c 77 u_char *inbuf, *outbuf; local
84 outbuf = xmalloc(olen);
90 if ((len = RSA_public_encrypt(ilen, inbuf, outbuf, key,
94 if (BN_bin2bn(outbuf, len, out) == NULL)
97 memset(outbuf, 0, olen);
99 xfree(outbuf);
106 u_char *inbuf, *outbuf; local
110 outbuf = xmalloc(olen);
116 if ((len = RSA_private_decrypt(ilen, inbuf, outbuf, key,
120 if (BN_bin2bn(outbuf, len, out) == NULL
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/
WrappedIndexBuffer.java 59 IndexBuffer outBuf = IndexBuffer.createIndexBuffer(mesh.getVertexCount(),
63 outBuf.put(i, inBuf.get(i));
79 if (outBuf instanceof IndexIntBuffer){
80 mesh.setBuffer(Type.Index, 3, (IntBuffer)outBuf.getBuffer());
82 mesh.setBuffer(Type.Index, 3, (ShortBuffer)outBuf.getBuffer());
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
GeometryBatchFactory.java 25 private static void doTransformVerts(FloatBuffer inBuf, int offset, FloatBuffer outBuf, Matrix4f transform) {
39 outBuf.put(offset + i * 3 + 0, pos.x);
40 outBuf.put(offset + i * 3 + 1, pos.y);
41 outBuf.put(offset + i * 3 + 2, pos.z);
45 private static void doTransformNorms(FloatBuffer inBuf, int offset, FloatBuffer outBuf, Matrix4f transform) {
59 outBuf.put(offset + i * 3 + 0, norm.x);
60 outBuf.put(offset + i * 3 + 1, norm.y);
61 outBuf.put(offset + i * 3 + 2, norm.z);
65 private static void doTransformTangents(FloatBuffer inBuf, int offset, int components, FloatBuffer outBuf, Matrix4f transform) {
79 outBuf.put(offset + i * components + 0, tan.x)
    [all...]
  /external/zlib/src/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/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/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
ScreenshotAppState.java 30 private ByteBuffer outBuf;
69 outBuf = BufferUtils.createByteBuffer(w*h*4);
84 renderer.readFrameBuffer(out, outBuf);
85 Screenshots.convertScreenShot(outBuf, awtImage);
  /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/valgrind/main/callgrind/
dump.c 58 static Char outbuf[FILENAME_LEN + FN_NAME_LEN + OBJ_NAME_LEN + COSTS_LEN]; variable
348 VG_(sprintf)(outbuf, "rec=%d\n\n", bbcc->rec_index);
349 my_fwrite(fd, (void*)outbuf, VG_(strlen)(outbuf));
363 VG_(sprintf)(outbuf, "frfn=(spontaneous)\n");
364 my_fwrite(fd, (void*)outbuf, VG_(strlen)(outbuf));
369 print_fn(fd,outbuf,"frfn", curr_from);
377 VG_(sprintf)(outbuf, "ob=");
378 print_obj(outbuf+3, bbcc->cxt->fn[0]->file->obj)
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_pwd.c 32 struct wpabuf *outbuf; member in struct:eap_pwd_data
129 data->inbuf = data->outbuf = NULL;
247 data->outbuf = wpabuf_alloc(sizeof(struct eap_pwd_id) +
249 if (data->outbuf == NULL) {
253 wpabuf_put_be16(data->outbuf, data->group_num);
254 wpabuf_put_u8(data->outbuf, EAP_PWD_DEFAULT_RAND_FUNC);
255 wpabuf_put_u8(data->outbuf, EAP_PWD_DEFAULT_PRF);
256 wpabuf_put_data(data->outbuf, id->token, sizeof(id->token));
257 wpabuf_put_u8(data->outbuf, EAP_PWD_PREP_NONE);
258 wpabuf_put_data(data->outbuf, data->id_peer, data->id_peer_len)
    [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);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/gconv/
EUC-KR.so 
GBGBK.so 
TSCII.so 
UTF-16.so 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/gconv/
EUC-KR.so 

Completed in 1399 milliseconds

1 2 3 4 5 6 7 8 91011>>