Searched defs:buff (Results 51 - 75 of 192) sorted by relevance

12345678

/external/chromium_org/third_party/speex/libspeex/
H A Dbits.c61 EXPORT void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size) argument
63 bits->chars = (char*)buff;
71 EXPORT void speex_bits_set_bit_buffer(SpeexBits *bits, void *buff, int buf_size) argument
73 bits->chars = (char*)buff;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cc33 static int AppendChar(char **buff, const char *buff_end, char c) { argument
34 if (*buff < buff_end) {
35 **buff = c;
36 (*buff)++;
44 static int AppendNumber(char **buff, const char *buff_end, u64 absolute_value, argument
56 result += AppendChar(buff, buff_end, '-');
74 result += AppendChar(buff, buff_end, c);
76 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
79 result += AppendChar(buff, buff_end, (digit < 10) ? '0' + digit
85 static int AppendUnsigned(char **buff, cons argument
91 AppendSignedDecimal(char **buff, const char *buff_end, s64 num, u8 minimal_num_length, bool pad_with_zero) argument
98 AppendString(char **buff, const char *buff_end, int precision, const char *s) argument
111 AppendPointer(char **buff, const char *buff_end, u64 ptr_value) argument
119 VSNPrintf(char *buff, int buff_length, const char *format, va_list args) argument
[all...]
/external/libnfc-nci/src/nfa/hci/
H A Dnfa_hci_main.c667 char buff[100]; local
774 (UINT8)pipe, nfa_hciu_get_type_inst_names (pipe, nfa_hci_cb.type, nfa_hci_cb.inst, buff),
/external/openssl/apps/
H A Denc.c109 unsigned char *buff=NULL,*bufsize=NULL; local
389 buff=(unsigned char *)OPENSSL_malloc(EVP_ENCODE_LENGTH(bsize));
390 if ((buff == NULL) || (strbuf == NULL))
676 inl=BIO_read(rbio,(char *)buff,bsize);
678 if (BIO_write(wbio,(char *)buff,inl) != inl)
699 if (buff != NULL) OPENSSL_free(buff);
/external/openssl/crypto/des/
H A Dread_pwd.c219 char buff[BUFSIZ]; local
222 ret=des_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
223 OPENSSL_cleanse(buff,BUFSIZ);
229 int des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify) argument
232 memset(buff,0,size);
238 int des_read_pw(char *buf, char *buff, int size, char *prompt, int verify) argument
241 memset(buff,0,size);
259 int des_read_pw(char *buf, char *buff, int size, const char *prompt, argument
375 buff[0]='\0';
376 fgets(buff,siz
[all...]
/external/pcre/dist/
H A Dpcre_study.c608 pcre_uchar buff[6]; local
610 (void)PRIV(ord2utf)(c, buff);
611 SET_BIT(buff[0]);
692 pcre_uchar buff[6]; local
693 (void)PRIV(ord2utf)(c, buff);
694 SET_BIT(buff[0]);
897 pcre_uchar buff[6]; local
898 (void)PRIV(ord2utf)(c, buff);
899 c = buff[0];
/external/qemu/android/
H A Dadb-qemud.c125 * buff, size - Buffer containing the host data.
128 _adb_on_host_data(void* opaque, void* connection, const void* buff, int size) argument
132 adb_client, adb_client->opaque, connection, size, QB(buff, size));
136 qemud_client_send(adb_client->qemud_client, (const uint8_t*)buff, size);
H A Dadb-server.c224 char buff[4096]; local
227 const int size = socket_recv(adb_host->host_so, buff, sizeof(buff));
237 adb_host->host_so, QB(buff, size));
244 adb_guest->callbacks->on_read(adb_guest->opaque, adb_guest, buff, size);
255 buff, size);
H A Dcharpipe.c40 char buff[ BIP_BUFFER_SIZE ]; member in struct:BipBuffer
59 cbuffer_reset( bip->cb, bip->buff, sizeof(bip->buff) );
H A Dconfig-file.c353 char buff[1024]; member in struct:__anon29105
362 w->p = w->buff;
363 w->end = w->buff + sizeof(w->buff);
390 if (HANDLE_EINTR(write(w->fd, w->buff, w->p - w->buff)) < 0)
392 w->p = w->buff;
400 if (w->p > w->buff) {
401 HANDLE_EINTR(write(w->fd, w->buff, w->p - w->buff));
[all...]
H A Dhw-pipe-net.c255 const GoldfishPipeBuffer* buff = buffers; local
256 const GoldfishPipeBuffer* buffEnd = buff + numBuffers;
262 for (; buff < buffEnd; buff++)
263 count += buff->size;
265 buff = buffers;
267 int avail = buff->size - buffStart;
268 int len = socket_send(pipe->io->fd, buff->data + buffStart, avail);
273 if (buffStart >= buff->size) {
274 buff
313 GoldfishPipeBuffer* buff = buffers; local
[all...]
H A Dopengles.c301 android_gles_server_path(char* buff, size_t buffsize) argument
303 strncpy_safe(buff, rendererAddress, buffsize);
/external/qemu/android/filesystems/
H A Dramdisk_extractor.cpp106 char* buff = reinterpret_cast<char*>(buffer); local
113 int ret = gzread(mFile, buff, static_cast<unsigned int>(avail));
126 buff += ret;
/external/qemu/android/utils/
H A Dmisc.c60 buffer_translate_char( char* buff, argument
71 memcpy(buff, src, len);
72 buff[len] = 0;
74 string_translate_char( buff, fromChar, toChar );
H A Dtimezone.c111 char buff[PATH_MAX+1]; local
115 int len = readlink(LOCALTIME_FILE, buff, sizeof(buff));
122 buff[len] = 0;
123 D("%s: %s points to %s\n", __FUNCTION__, LOCALTIME_FILE, buff);
124 if ( memcmp(buff, ZONEINFO_DIR, sizeof(ZONEINFO_DIR)-1) ) {
129 tz = buff + sizeof(ZONEINFO_DIR)-1;
/external/qemu/distrib/sdl-1.2.15/src/audio/ums/
H A DSDL_umsaudio.c74 static UMSAudioDevice_ReturnCode UADWrite(_THIS, UMSAudioTypes_Buffer* buff, long samples, long* samples_written);
510 static UMSAudioDevice_ReturnCode UADWrite(_THIS, UMSAudioTypes_Buffer* buff,
516 buff,
509 UADWrite(_THIS, UMSAudioTypes_Buffer* buff, long samples, long* samples_written) argument
/external/qemu/slirp/
H A Dsocket.c295 char buff[2048]; /* XXX Shouldn't be sending more oob data than this */ local
320 memcpy(buff, sb->sb_rptr, len);
325 memcpy((buff + len), sb->sb_data, n);
329 n = slirp_send(so, buff, len, (MSG_OOB)); /* |MSG_DONTWAIT)); */
453 char buff[256]; local
456 len = recvfrom(so->s, buff, 256, 0,
H A Dtcp_subr.c613 char buff[257]; local
929 if (sscanf(so_rcv->sb_rptr, "pass %256s", buff) == 1) {
930 if (strcmp(buff, ctl_password) == 0) {
970 &n1, &n2, &n3, &n4, &n5, &n6, buff);
995 n1, n2, n3, n4, n5, n6, x==7?buff:"");
1002 &n1, &n2, &n3, &n4, &n5, &n6, buff);
1027 n1, n2, n3, n4, n5, n6, x==7?buff:"");
1063 if (sscanf(bptr, "DCC CHAT %256s %u %u", buff, &laddr, &lport) == 3) {
1072 } else if (sscanf(bptr, "DCC SEND %256s %u %u %u", buff, &laddr, &lport, &n1) == 4) {
1078 "DCC SEND %s %lu %u %u%c\n", buff,
[all...]
/external/qemu/slirp-android/
H A Dsocket.c303 char buff[2048]; /* XXX Shouldn't be sending more oob data than this */ local
328 memcpy(buff, sb->sb_rptr, len);
333 memcpy((buff + len), sb->sb_data, n);
337 n = socket_send_oob(so->s, buff, len); /* |MSG_DONTWAIT)); */
460 char buff[256]; local
463 len = socket_recvfrom(so->s, buff, 256, &addr);
/external/qemu/telephony/
H A Dremote_call.c114 char* buff; member in struct:RemoteCallRec
129 if (call->buff && call->buff != call->buff0) {
130 free(call->buff);
131 call->buff = call->buff0;
170 rcall->buff = rcall->buff0;
174 p = rcall->buff;
207 rcall->buff_len = p - rcall->buff;
231 char* old_buff = call->buff == call->buff0 ? NULL : call->buff;
[all...]
/external/speex/libspeex/
H A Dbits.c61 EXPORT void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size) argument
63 bits->chars = (char*)buff;
71 EXPORT void speex_bits_set_bit_buffer(SpeexBits *bits, void *buff, int buf_size) argument
73 bits->chars = (char*)buff;
H A Dscal.c72 float *buff; member in struct:SpeexDecorrState_
96 st->buff = speex_alloc(channels*2*frame_size*sizeof(float));
156 float *buff; local
162 buff = st->buff+ch*2*st->frame_size;
169 buff[i] = buff[i+st->frame_size];
171 buff[i+st->frame_size] = in[i*st->channels+ch];
173 x = buff+st->frame_size;
229 frame[i] = buff[
[all...]
/external/srec/srec/ca/
H A Dann_api.c527 int* begin, int* end, char* buff, int buffLen)
540 annotation_get_data(hAnnotation->data, id, begin, end, buff, buffLen);
526 CA_GetAnnotationData(CA_Annotation* hAnnotation, int id, int* begin, int* end, char* buff, int buffLen) argument
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DPYXWriter.java37 public void adup(char[] buff, int offset, int length) throws SAXException { argument
42 public void aname(char[] buff, int offset, int length) throws SAXException { argument
44 theWriter.write(buff, offset, length);
46 attrName = new String(buff, offset, length);
49 public void aval(char[] buff, int offset, int length) throws SAXException { argument
50 theWriter.write(buff, offset, length);
55 public void cmnt(char [] buff, int offset, int length) throws SAXException { argument
57 // theWriter.write(buff, offset, length);
61 public void entity(char[] buff, int offset, int length) throws SAXException { } argument
65 public void eof(char[] buff, in argument
69 etag(char[] buff, int offset, int length) argument
75 decl(char[] buff, int offset, int length) argument
78 gi(char[] buff, int offset, int length) argument
84 cdsect(char[] buff, int offset, int length) argument
88 pcdata(char[] buff, int offset, int length) argument
122 pitarget(char[] buff, int offset, int length) argument
128 pi(char[] buff, int offset, int length) argument
133 stagc(char[] buff, int offset, int length) argument
137 stage(char[] buff, int offset, int length) argument
143 characters(char[] buff, int offset, int length) argument
159 ignorableWhitespace(char[] buff, int offset, int length) argument
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dcu12.c73 uint16_t buff[1000]; /* Large so we con'don't have to worry about it */ variable
163 run_test(buff, sizeof buff, valid, sizeof valid);
178 run_test(buff, sizeof buff, invalid_char, sizeof invalid_char);
190 run_test(buff, sizeof buff, invalid_char, sizeof invalid_char);
198 run_test(buff, sizeof buff, valid_invalid, sizeof valid_invalid);
216 run_test(buff, sizeo
[all...]

Completed in 1165 milliseconds

12345678