Home
last modified time | relevance | path

Searched refs:fbuf (Results 1 – 11 of 11) sorted by relevance

/external/icu/icu4c/source/tools/tzcode/
Dscheck.c13 register char * fbuf; in scheck() local
23 fbuf = malloc(2 * strlen(format) + 4); in scheck()
24 if (fbuf == NULL) in scheck()
27 tp = fbuf; in scheck()
60 if (sscanf(string, fbuf, &dummy) != 1) in scheck()
62 free(fbuf); in scheck()
/external/webrtc/webrtc/modules/audio_processing/
Daudio_buffer.cc127 input_buffer_->fbuf()->channels()[0]); in CopyFrom()
146 data_->fbuf()->channels()[i]); in CopyFrom()
162 FloatS16ToFloat(data_->fbuf()->channels()[i], in CopyTo()
254 return data_->fbuf()->channels(); in channels_f()
266 split_data_->fbuf()->bands(channel) : in split_bands_f()
267 data_->fbuf()->bands(channel); in split_bands_f()
281 return split_data_->fbuf()->channels(band); in split_channels_f()
283 return band == kBand0To8kHz ? data_->fbuf()->channels() : nullptr; in split_channels_f()
289 return data_->fbuf(); in data_f()
298 return split_data_.get() ? split_data_->fbuf() : data_->fbuf(); in split_data_f()
[all …]
Dsplitting_filter_unittest.cc51 memset(in_data.fbuf()->channels()[0], in TEST()
53 kSamplesPer48kHzChannel * sizeof(in_data.fbuf()->channels()[0][0])); in TEST()
58 in_data.fbuf()->channels()[0][k] += in TEST()
Dsplitting_filter.cc91 bands->fbuf()->bands(i)); in ThreeBandsAnalysis()
101 data->fbuf()->channels()[i]); in ThreeBandsSynthesis()
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
DNanoHTTPD.java644 …private void decodeMultipartFormData(String boundary, String encoding, ByteBuffer fbuf, Map<String… in decodeMultipartFormData() argument
646 int[] boundary_idxs = getBoundaryPositions(fbuf, boundary.getBytes()); in decodeMultipartFormData()
653 fbuf.position(boundary_idxs[bi]); in decodeMultipartFormData()
654 … int len = (fbuf.remaining() < MAX_HEADER_SIZE) ? fbuf.remaining() : MAX_HEADER_SIZE; in decodeMultipartFormData()
655 fbuf.get(part_header_buff, 0, len); in decodeMultipartFormData()
702 fbuf.position(part_data_start); in decodeMultipartFormData()
706 fbuf.get(data_bytes); in decodeMultipartFormData()
710 … String path = saveTmpFile(fbuf, part_data_start, part_data_end - part_data_start, file_name); in decodeMultipartFormData()
1031 ByteBuffer fbuf = null; in parseBody() local
1033 fbuf = ByteBuffer.wrap(baos.toByteArray(), 0, baos.size()); in parseBody()
[all …]
/external/fio/
Dgclient.c717 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");
[all …]
Dstat.c212 char fbuf[16], *ptr = fbuf; in show_clat_percentiles() local
222 ptr += sprintf(fbuf, " "); in show_clat_percentiles()
224 snprintf(ptr, sizeof(fbuf), fmt, plist[j].u.f); in show_clat_percentiles()
229 log_info(" %sth=[%5u]%c", fbuf, ovals[j], is_last ? '\n' : ','); in show_clat_percentiles()
/external/webrtc/webrtc/common_audio/
Dchannel_buffer.cc29 ChannelBuffer<float>* IFChannelBuffer::fbuf() { in fbuf() function in webrtc::IFChannelBuffer
Dchannel_buffer.h148 ChannelBuffer<float>* fbuf();
/external/libopus/tests/
Dtest_opus_api.c91 float fbuf[960*2]; in test_dec_api() local
318 VG_UNDEF(fbuf,sizeof(fbuf)); in test_dec_api()
319 if(opus_decode_float(dec, packet, 3, fbuf, 960, 0)!=960)test_failed(); in test_dec_api()
351 float fbuf[960*2]; in test_msdec_api() local
668 VG_UNDEF(fbuf,sizeof(fbuf)); in test_msdec_api()
669 if(opus_multistream_decode_float(dec, packet, 3, fbuf, 960, 0)!=960)test_failed(); in test_msdec_api()
1074 float fbuf[960*2]; in test_enc_api() local
1413 memset(fbuf,0,sizeof(float)*2*960); in test_enc_api()
1415 i=opus_encode_float(enc, fbuf, 960, packet, sizeof(packet)); in test_enc_api()
1427 if(opus_encode_float(0,fbuf,960,packet,sizeof(packet))!=OPUS_INVALID_STATE)test_failed(); in test_enc_api()
/external/opencv3/modules/core/src/
Dmathfuncs.cpp1424 float* fbuf = 0; in pow() local
1434 fbuf = (float*)(uchar*)buf; in pow()
1465 float* x = fbuf ? fbuf : x0; in pow()