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

1 2 3 4 5 6

  /cts/suite/audio_quality/test_description/processing/
example.py 25 # inputData : list of inputs with different types like int64, double,
40 def example(inputData, inputTypes):
44 stereoInt = (inputData[0].astype(int) + inputData[1].astype(int))/2
46 #print len(inputData[0]), len(inputData[1]), len(stereoInt), len(stereo)
47 monoInt = (inputData[2].astype(int) + inputData[3].astype(int))/2
49 #print len(inputData[2]), len(inputData[3]), len(monoInt), len(mono
    [all...]
playback_sample.py 25 def playback_sample(inputData, inputTypes):
43 hostRecording = inputData[0]
44 signalFrequency = inputData[1]
45 threshold = inputData[2]
playback_thd.py 29 def playback_thd(inputData, inputTypes):
47 hostRecording = inputData[0]
48 signalFrequency = inputData[1]
49 thdPassPercentile = inputData[2]
recording_thd.py 36 def recording_thd(inputData, inputTypes):
56 hostRecording = inputData[0]
57 deviceRecording = inputData[1]
58 signalFrequency = inputData[2]
59 thdPassPercentile = inputData[3]
check_spectrum.py 81 def check_spectrum(inputData, inputTypes):
107 hostData = inputData[0]
110 dutData = inputData[1]
113 samplingRate = inputData[2]
114 fLow = inputData[3]
115 fHigh = inputData[4]
116 margainLow = inputData[5]
117 margainHigh = inputData[6]
gen_random.py 62 def gen_random(inputData, inputTypes):
82 result = do_gen_random(inputData[0], inputData[1], inputData[2], inputData[3])
check_spectrum_playback.py 69 def check_spectrum_playback(inputData, inputTypes):
92 hostData = inputData[0]
93 samplingRate = inputData[1]
94 fLow = inputData[2]
95 fHigh = inputData[3]
96 margainLow = inputData[4]
97 margainHigh = inputData[5]
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_vidc_enc.h 177 /*IOCTL params:SET: InputData - unsigned long, OutputData - NULL*/
181 /*IOCTL params:CMD: InputData - venc_timeout, OutputData - venc_msg*/
185 /*IOCTL params:CMD: InputData - NULL, OutputData - NULL*/
188 /*IOCTL params:SET: InputData - venc_allocatorproperty, OutputData - NULL
189 GET: InputData - NULL, OutputData - venc_allocatorproperty*/
195 /*IOCTL params:CMD: InputData - venc_bufferpayload, OutputData - NULL*/
199 /*IOCTL params:CMD: InputData - venc_bufferpayload, OutputData - NULL*/
203 /*IOCTL params: CMD: InputData - venc_bufferpayload, OutputData - NULL*/
207 /*IOCTL params:SET: InputData - venc_allocatorproperty, OutputData - NULL
208 GET: InputData - NULL, OutputData - venc_allocatorproperty*
    [all...]
  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm_vidc_enc.h 181 /*IOCTL params:SET: InputData - unsigned long, OutputData - NULL*/
185 /*IOCTL params:CMD: InputData - venc_timeout, OutputData - venc_msg*/
189 /*IOCTL params:CMD: InputData - NULL, OutputData - NULL*/
192 /*IOCTL params:SET: InputData - venc_allocatorproperty, OutputData - NULL
193 GET: InputData - NULL, OutputData - venc_allocatorproperty*/
199 /*IOCTL params:CMD: InputData - venc_bufferpayload, OutputData - NULL*/
203 /*IOCTL params:CMD: InputData - venc_bufferpayload, OutputData - NULL*/
207 /*IOCTL params: CMD: InputData - venc_bufferpayload, OutputData - NULL*/
211 /*IOCTL params:SET: InputData - venc_allocatorproperty, OutputData - NULL
212 GET: InputData - NULL, OutputData - venc_allocatorproperty*
    [all...]
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_vidc_enc.h 181 /*IOCTL params:SET: InputData - unsigned long, OutputData - NULL*/
185 /*IOCTL params:CMD: InputData - venc_timeout, OutputData - venc_msg*/
189 /*IOCTL params:CMD: InputData - NULL, OutputData - NULL*/
192 /*IOCTL params:SET: InputData - venc_allocatorproperty, OutputData - NULL
193 GET: InputData - NULL, OutputData - venc_allocatorproperty*/
199 /*IOCTL params:CMD: InputData - venc_bufferpayload, OutputData - NULL*/
203 /*IOCTL params:CMD: InputData - venc_bufferpayload, OutputData - NULL*/
207 /*IOCTL params: CMD: InputData - venc_bufferpayload, OutputData - NULL*/
211 /*IOCTL params:SET: InputData - venc_allocatorproperty, OutputData - NULL
212 GET: InputData - NULL, OutputData - venc_allocatorproperty*
    [all...]
  /hardware/qcom/msm8x84/original-kernel-headers/linux/
msm_vidc_enc.h 181 /*IOCTL params:SET: InputData - unsigned long, OutputData - NULL*/
185 /*IOCTL params:CMD: InputData - venc_timeout, OutputData - venc_msg*/
189 /*IOCTL params:CMD: InputData - NULL, OutputData - NULL*/
192 /*IOCTL params:SET: InputData - venc_allocatorproperty, OutputData - NULL
193 GET: InputData - NULL, OutputData - venc_allocatorproperty*/
199 /*IOCTL params:CMD: InputData - venc_bufferpayload, OutputData - NULL*/
203 /*IOCTL params:CMD: InputData - venc_bufferpayload, OutputData - NULL*/
207 /*IOCTL params: CMD: InputData - venc_bufferpayload, OutputData - NULL*/
211 /*IOCTL params:SET: InputData - venc_allocatorproperty, OutputData - NULL
212 GET: InputData - NULL, OutputData - venc_allocatorproperty*
    [all...]
  /system/connectivity/shill/net/
io_handler.h 28 struct SHILL_EXPORT InputData {
29 InputData() : buf(nullptr), len(0) {}
30 InputData(unsigned char* in_buf, size_t in_len) : buf(in_buf), len(in_len) {}
44 typedef base::Callback<void(InputData*)> InputCallback;
  /cts/suite/audio_quality/test_description/
processing_main.py 39 def echo(inputData, inputTypes):
41 print "echo received ", inputData
43 output.append(inputData)
47 def intsum(inputData, inputTypes):
50 sum = inputData[0] + inputData[1]
83 inputData = []
90 inputData.append(data)
98 inputData.append(i64)
102 inputData.append(val
    [all...]
  /external/opencv3/modules/flann/include/opencv2/flann/
index_testing.h 64 typename Distance::ResultType computeDistanceRaport(const Matrix<typename Distance::ElementType>& inputData, typename Distance::ElementType* target,
71 DistanceType den = distance(inputData[groundTruth[i]], target, veclen);
72 DistanceType num = distance(inputData[neighbors[i]], target, veclen);
86 float search_with_ground_truth(NNIndex<Distance>& index, const Matrix<typename Distance::ElementType>& inputData,
119 distR += computeDistanceRaport<Distance>(inputData, testData[i], neighbors, matches[i], (int)testData.cols, nn, distance);
137 float test_index_checks(NNIndex<Distance>& index, const Matrix<typename Distance::ElementType>& inputData,
148 precision = search_with_ground_truth(index, inputData, testData, matches, nn, checks, time, dist, distance, skipMatches);
154 float test_index_precision(NNIndex<Distance>& index, const Matrix<typename Distance::ElementType>& inputData,
171 p2 = search_with_ground_truth(index, inputData, testData, matches, nn, c2, time, dist, distance, skipMatches);
183 p2 = search_with_ground_truth(index, inputData, testData, matches, nn, c2, time, dist, distance, skipMatches)
    [all...]
  /external/libopus/silk/float/
autocorrelation_FLP.c 38 const silk_float *inputData, /* I input data to correlate */
50 results[ i ] = (silk_float)silk_inner_product_FLP( inputData, inputData + i, inputDataSize - i );
  /external/protobuf/benchmarks/
ProtoBench.java 90 final byte[] inputData = readAllBytes(file);
91 final ByteArrayInputStream inputStream = new ByteArrayInputStream(inputData);
92 final ByteString inputString = ByteString.copyFrom(inputData);
104 benchmark("Serialize to byte string", inputData.length, new Action() {
107 benchmark("Serialize to byte array", inputData.length, new Action() {
110 benchmark("Serialize to memory stream", inputData.length, new Action() {
116 benchmark("Serialize to /dev/null with FileOutputStream", inputData.length, new Action() {
121 benchmark("Serialize to /dev/null reusing FileOutputStream", inputData.length, new Action() {
128 benchmark("Deserialize from byte string", inputData.length, new Action() {
133 benchmark("Deserialize from byte array", inputData.length, new Action()
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/test/
iLBC_testprogram.c 99 short *inputdata, *encodeddata, *decodeddata; local
112 inputdata=(short*) malloc(MAXFILELEN*sizeof(short));
113 if (inputdata==NULL) {
120 free(inputdata);
126 free(inputdata);
133 free(inputdata);
205 while( fread(&inputdata[noOfBlocks*80], sizeof(short),
215 while( fread(&inputdata[noOfBlocks*Enc_Inst.blockl],sizeof(short),
229 free(inputdata);
256 &inputdata[frameLen * count] )
    [all...]
  /system/connectivity/apmanager/
hostapd_monitor.h 30 struct InputData;
81 void ParseMessage(shill::InputData* data);
94 base::Callback<void(shill::InputData *)> hostapd_callback_;
hostapd_monitor_unittest.cc 75 void ParseMessage(shill::InputData* data) {
97 shill::InputData data;
108 shill::InputData data;
  /external/libopus/silk/fixed/
autocorr_FIX.c 39 const opus_int16 *inputData, /* I Input data to correlate */
47 *scale = _celt_autocorr(inputData, results, NULL, 0, corrCount-1, inputDataSize, arch);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
routprot.h 186 typedef DWORD (WINAPI *PMIB_CREATE)(ULONG InputDataSize,PVOID InputData);
187 typedef DWORD (WINAPI *PMIB_DELETE)(ULONG InputDataSize,PVOID InputData);
188 typedef DWORD (WINAPI *PMIB_GET)(ULONG InputDataSize,PVOID InputData,PULONG OutputDataSize,PVOID OutputData);
189 typedef DWORD (WINAPI *PMIB_SET)(ULONG InputDataSize,PVOID InputData);
190 typedef DWORD (WINAPI *PMIB_GET_FIRST)(ULONG InputDataSize,PVOID InputData,PULONG OutputDataSize,PVOID OutputData);
191 typedef DWORD (WINAPI *PMIB_GET_NEXT)(ULONG InputDataSize,PVOID InputData,PULONG OutputDataSize,PVOID OutputData);
192 typedef DWORD (WINAPI *PMIB_SET_TRAP_INFO)(HANDLE Event,ULONG InputDataSize,PVOID InputData,PULONG OutputDataSize,PVOID OutputData);
193 typedef DWORD (WINAPI *PMIB_GET_TRAP_INFO)(ULONG InputDataSize,PVOID InputData,PULONG OutputDataSize,PVOID OutputData);
  /system/connectivity/shill/
http_proxy.h 37 struct InputData;
114 bool ReadClientHeaders(InputData* data);
118 void ReadFromClient(InputData* data);
119 void ReadFromServer(InputData* data);
138 base::Callback<void(InputData*)> read_client_callback_;
139 base::Callback<void(InputData*)> read_server_callback_;
http_request.h 40 struct InputData;
114 void ReadFromServer(InputData* data);
127 base::Callback<void(InputData*)> read_server_callback_;
  /frameworks/av/media/libstagefright/codecs/aacenc/
AACEncoder.cpp 295 VO_CODECBUFFER inputData;
296 memset(&inputData, 0, sizeof(inputData));
297 inputData.Buffer = (unsigned char*) mInputFrame;
298 inputData.Length = nSamples * sizeof(int16_t);
299 CHECK(VO_ERR_NONE == mApiHandle->SetInputData(mEncoderHandle,&inputData));
  /prebuilts/tools/common/m2/repository/org/apache/maven/wagon/wagon-file/1.0-beta-6/
wagon-file-1.0-beta-6.jar 

Completed in 608 milliseconds

1 2 3 4 5 6