HomeSort by relevance Sort by last modified time
    Searched defs:fbuf (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/icu/source/tools/tzcode/
scheck.c 21 register char * fbuf; local
31 fbuf = imalloc((int) (2 * strlen(format) + 4));
32 if (fbuf == NULL)
35 tp = fbuf;
59 if (sscanf(string, fbuf, &dummy) != 1)
61 ifree(fbuf);
  /external/icu/icu4c/source/tools/tzcode/
scheck.c 21 register char * fbuf; local
31 fbuf = imalloc((int) (2 * strlen(format) + 4));
32 if (fbuf == NULL)
35 tp = fbuf;
59 if (sscanf(string, fbuf, &dummy) != 1)
61 ifree(fbuf);
  /system/netd/server/
SoftapController.cpp 121 char *fbuf = NULL; local
146 asprintf(&fbuf, "%swpa=3\nwpa_pairwise=TKIP CCMP\nwpa_psk=%s\n", wbuf, psk_str);
149 asprintf(&fbuf, "%swpa=2\nrsn_pairwise=CCMP\nwpa_psk=%s\n", wbuf, psk_str);
151 asprintf(&fbuf, "%s", wbuf);
155 asprintf(&fbuf, "%s", wbuf);
158 asprintf(&fbuf, "%s", wbuf);
165 free(fbuf);
168 if (write(fd, fbuf, strlen(fbuf)) < 0) {
173 free(fbuf);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/
audio_buffer.cc 74 // therefore safe to use the return value of ibuf() and fbuf() until the next
90 ChannelBuffer<float>* fbuf() { function in class:webrtc::IFChannelBuffer
139 float* low_channel_f(int i) { return low_.fbuf()->channel(i); }
140 float* high_channel_f(int i) { return high_.fbuf()->channel(i); }
299 return channels_->fbuf()->channel(channel);
  /external/chromium_org/third_party/opus/src/tests/
test_opus_api.c 91 float fbuf[960*2]; local
318 VG_UNDEF(fbuf,sizeof(fbuf));
319 if(opus_decode_float(dec, packet, 3, fbuf, 960, 0)!=960)test_failed();
351 float fbuf[960*2]; local
668 VG_UNDEF(fbuf,sizeof(fbuf));
669 if(opus_multistream_decode_float(dec, packet, 3, fbuf, 960, 0)!=960)test_failed();
1074 float fbuf[960*2]; local
    [all...]
  /external/libopus/tests/
test_opus_api.c 91 float fbuf[960*2]; local
318 VG_UNDEF(fbuf,sizeof(fbuf));
319 if(opus_decode_float(dec, packet, 3, fbuf, 960, 0)!=960)test_failed();
351 float fbuf[960*2]; local
668 VG_UNDEF(fbuf,sizeof(fbuf));
669 if(opus_multistream_decode_float(dec, packet, 3, fbuf, 960, 0)!=960)test_failed();
1074 float fbuf[960*2]; local
    [all...]
  /external/fio/
gclient.c 717 char fbuf[32]; local
720 sprintf(fbuf, "0.0%%");
722 sprintf(fbuf, "%3.1f%%", io_u_dist[j]);
726 gtk_list_store_set(model, &iter, i, fbuf, -1);
762 char fbuf[32]; local
765 sprintf(fbuf, "0.0%%");
767 sprintf(fbuf, "%3.1f%%", io_u_dist[j]);
771 gtk_list_store_set(model, &iter, i, fbuf, -1);
888 char fbuf[32]; local
891 sprintf(fbuf, "0.00")
1076 char fbuf[8]; local
1108 char fbuf[8]; local
    [all...]
stat.c 212 char fbuf[16], *ptr = fbuf; local
222 ptr += sprintf(fbuf, " ");
224 snprintf(ptr, sizeof(fbuf), fmt, plist[j].u.f);
229 log_info(" %sth=[%5u]%c", fbuf, ovals[j], is_last ? '\n' : ',');
    [all...]
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java 991 ByteBuffer fbuf = randomAccessFile.getChannel().map(FileChannel.MapMode.READ_ONLY, 0, randomAccessFile.length()); local
    [all...]

Completed in 189 milliseconds