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

  /external/icu/icu4c/source/tools/tzcode/
scheck.c 13 register char * fbuf; local
23 fbuf = malloc(2 * strlen(format) + 4);
24 if (fbuf == NULL)
27 tp = fbuf;
60 if (sscanf(string, fbuf, &dummy) != 1)
62 free(fbuf);
  /libcore/ojluni/src/main/native/
FileKey.c 57 struct stat64 fbuf; local
60 RESTARTABLE(fstat64(fdval(env, fdo), &fbuf), res);
64 (*env)->SetLongField(env, this, key_st_dev, (jlong)fbuf.st_dev);
65 (*env)->SetLongField(env, this, key_st_ino, (jlong)fbuf.st_ino);
FileDispatcherImpl.c 155 struct stat64 fbuf; local
157 if (fstat64(fdval(env, fdo), &fbuf) < 0)
159 return fbuf.st_size;
  /system/netd/server/
SoftapController.cpp 153 std::string fbuf; local
160 fbuf = StringPrintf("%swpa=3\nwpa_pairwise=TKIP CCMP\nwpa_psk=%s\n", wbuf.c_str(), psk_str);
165 fbuf = StringPrintf("%swpa=2\nrsn_pairwise=CCMP\nwpa_psk=%s\n", wbuf.c_str(), psk_str);
167 fbuf = wbuf;
171 fbuf = wbuf;
174 fbuf = wbuf;
177 if (!WriteStringToFile(fbuf, HOSTAPD_CONF_FILE, 0660, AID_SYSTEM, AID_WIFI)) {
  /external/webrtc/webrtc/modules/audio_processing/
audio_buffer.cc 127 input_buffer_->fbuf()->channels()[0]);
146 data_->fbuf()->channels()[i]);
162 FloatS16ToFloat(data_->fbuf()->channels()[i],
254 return data_->fbuf()->channels();
266 split_data_->fbuf()->bands(channel) :
267 data_->fbuf()->bands(channel);
281 return split_data_->fbuf()->channels(band);
283 return band == kBand0To8kHz ? data_->fbuf()->channels() : nullptr;
289 return data_->fbuf();
298 return split_data_.get() ? split_data_->fbuf() : data_->fbuf()
    [all...]
splitting_filter_unittest.cc 51 memset(in_data.fbuf()->channels()[0],
53 kSamplesPer48kHzChannel * sizeof(in_data.fbuf()->channels()[0][0]));
58 in_data.fbuf()->channels()[0][k] +=
splitting_filter.cc 91 bands->fbuf()->bands(i));
101 data->fbuf()->channels()[i]);
  /external/webrtc/webrtc/common_audio/
channel_buffer.cc 29 ChannelBuffer<float>* IFChannelBuffer::fbuf() { function in class:webrtc::IFChannelBuffer
channel_buffer.h 141 // until the next call to ibuf() or fbuf(), and the return value of ibuf() and
142 // fbuf() until the next call to any of the other functions.
148 ChannelBuffer<float>* fbuf();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winber.h 32 WINBERAPI VOID BERAPI ber_free(BerElement *pBerElement,INT fbuf);
  /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 644 private void decodeMultipartFormData(String boundary, String encoding, ByteBuffer fbuf, Map<String, String> parms, Map<String, String> files) throws ResponseException {
646 int[] boundary_idxs = getBoundaryPositions(fbuf, boundary.getBytes());
653 fbuf.position(boundary_idxs[bi]);
654 int len = (fbuf.remaining() < MAX_HEADER_SIZE) ? fbuf.remaining() : MAX_HEADER_SIZE;
655 fbuf.get(part_header_buff, 0, len);
702 fbuf.position(part_data_start);
706 fbuf.get(data_bytes);
710 String path = saveTmpFile(fbuf, part_data_start, part_data_end - part_data_start, file_name);
1031 ByteBuffer fbuf = null; local
1060 getAttributeFromContentHeader(contentTypeHeader, CHARSET_PATTERN, "US-ASCII"), fbuf, this.parms, files); local
    [all...]
  /prebuilts/go/darwin-x86/test/bench/shootout/
regex-dna.c 47 typedef struct fbuf { struct
  /prebuilts/go/linux-x86/test/bench/shootout/
regex-dna.c 47 typedef struct fbuf { struct
  /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/opencv3/modules/core/src/
mathfuncs.cpp     [all...]

Completed in 486 milliseconds