/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/ |
MtpDeviceIndex.java | 263 int iMin = 0; 265 while (iMax >= iMin) { 266 int iMid = (iMax + iMin) / 2; 269 iMin = iMid + 1;
|
/external/chromium_org/third_party/opus/src/src/ |
analysis.c | 228 alpha = 1.f/IMIN(20, 1+tonal->count); 229 alphaE = 1.f/IMIN(50, 1+tonal->count); 230 alphaE2 = 1.f/IMIN(1000, 1+tonal->count); 237 downmix(x, &tonal->inmem[tonal->mem_fill], IMIN(len, ANALYSIS_BUF_SIZE-tonal->mem_fill), offset, c1, c2, C); 583 tonal->music_confidence_count = IMIN(tonal->music_confidence_count, 500); 590 tonal->speech_confidence_count = IMIN(tonal->speech_confidence_count, 500); 629 analysis_frame_size = IMIN((DETECT_SIZE-5)*Fs/100, analysis_frame_size); 634 tonality_analysis(analysis, NULL, celt_mode, analysis_pcm, IMIN(480, pcm_len), offset, c1, c2, C, lsb_depth, downmix);
|
opus_decoder.c | 247 frame_size = IMIN(frame_size, st->Fs/25*3); 253 frame_size = IMIN(frame_size, st->frame_size); 278 int ret = opus_decode_frame(st, NULL, 0, pcm, IMIN(audiosize, F20), 0); 316 opus_decode_frame(st, NULL, 0, pcm_transition, IMIN(F5, audiosize), 0); 453 opus_decode_frame(st, NULL, 0, pcm_transition, IMIN(F5, audiosize), 0); 474 int celt_frame_size = IMIN(F20, frame_size);
|
opus_encoder.c | 528 M = IMIN(maxM, (1<<LM)+1); 685 N=IMIN(len/subframe, MAX_DYNAMIC_FRAMESIZE); 712 N=IMIN(MAX_DYNAMIC_FRAMESIZE, N+2); 810 new_size = IMIN(3*Fs/50, (Fs/400)<<(variable_duration-OPUS_FRAMESIZE_2_5_MS)); 964 max_data_bytes = IMIN(1276, out_data_bytes); 983 lsb_depth = IMIN(lsb_depth, st->lsb_depth); 1059 cbrBytes = IMIN( (st->bitrate_bps + 4*frame_rate)/(8*frame_rate) , max_data_bytes); [all...] |
opus_multistream_decoder.c | 206 frame_size = IMIN(frame_size, Fs/25*3);
|
/external/libopus/src/ |
analysis.c | 228 alpha = 1.f/IMIN(20, 1+tonal->count); 229 alphaE = 1.f/IMIN(50, 1+tonal->count); 230 alphaE2 = 1.f/IMIN(1000, 1+tonal->count); 237 downmix(x, &tonal->inmem[tonal->mem_fill], IMIN(len, ANALYSIS_BUF_SIZE-tonal->mem_fill), offset, c1, c2, C); 583 tonal->music_confidence_count = IMIN(tonal->music_confidence_count, 500); 590 tonal->speech_confidence_count = IMIN(tonal->speech_confidence_count, 500); 629 analysis_frame_size = IMIN((DETECT_SIZE-5)*Fs/100, analysis_frame_size); 634 tonality_analysis(analysis, NULL, celt_mode, analysis_pcm, IMIN(480, pcm_len), offset, c1, c2, C, lsb_depth, downmix);
|
opus_decoder.c | 247 frame_size = IMIN(frame_size, st->Fs/25*3); 253 frame_size = IMIN(frame_size, st->frame_size); 278 int ret = opus_decode_frame(st, NULL, 0, pcm, IMIN(audiosize, F20), 0); 316 opus_decode_frame(st, NULL, 0, pcm_transition, IMIN(F5, audiosize), 0); 453 opus_decode_frame(st, NULL, 0, pcm_transition, IMIN(F5, audiosize), 0); 474 int celt_frame_size = IMIN(F20, frame_size);
|
opus_encoder.c | 528 M = IMIN(maxM, (1<<LM)+1); 685 N=IMIN(len/subframe, MAX_DYNAMIC_FRAMESIZE); 712 N=IMIN(MAX_DYNAMIC_FRAMESIZE, N+2); 810 new_size = IMIN(3*Fs/50, (Fs/400)<<(variable_duration-OPUS_FRAMESIZE_2_5_MS)); 964 max_data_bytes = IMIN(1276, out_data_bytes); 983 lsb_depth = IMIN(lsb_depth, st->lsb_depth); 1059 cbrBytes = IMIN( (st->bitrate_bps + 4*frame_rate)/(8*frame_rate) , max_data_bytes); [all...] |
opus_multistream_decoder.c | 206 frame_size = IMIN(frame_size, Fs/25*3);
|
/external/chromium_org/third_party/opus/src/celt/ |
celt_encoder.c | 349 id = IMAX(0,IMIN(127,MULT16_32_Q15(tmp[i],norm))); /* Do not round to nearest */ 351 id = IMAX(0,IMIN(127,(int)floor(64*norm*tmp[i]))); /* Do not round to nearest */ 649 curr0 = IMIN(cost0, cost1 + lambda); 650 curr1 = IMIN(cost0 + lambda, cost1); 654 cost0 = IMIN(cost0, cost1); [all...] |
quant_bands.c | 221 qi = IMIN(1, qi); 226 qi = IMIN(qi, 0); 230 pi = 2*IMIN(i,20); 236 qi = IMAX(-1, IMIN(qi, 1)); 241 qi = IMIN(0, qi); 464 pi = 2*IMIN(i,20);
|
bands.c | 625 qb = IMIN(b-pulse_cap-(4<<BITRES), (b+N2*offset)/N2); 627 qb = IMIN(8<<BITRES, qb); 950 delta = IMIN(0, delta + (N<<BITRES>>(5-LM))); 952 mbits = IMAX(0, IMIN(b, (b-delta)/2)); [all...] |
arch.h | 79 #define IMIN(a,b) ((a) < (b) ? (a) : (b)) /**< Minimum int value. */
|
celt_decoder.c | 384 effEnd = IMAX(start, IMIN(end, mode->effEBands)); 429 bound = IMIN(bound, N/downsample); 507 exc_length = IMIN(2*pitch_index, MAX_PERIOD); 857 quanta = IMIN(width<<BITRES, IMAX(6<<BITRES, width)); 933 bound = IMIN(bound, N/st->downsample); [all...] |
/external/libopus/celt/ |
celt_encoder.c | 349 id = IMAX(0,IMIN(127,MULT16_32_Q15(tmp[i],norm))); /* Do not round to nearest */ 351 id = IMAX(0,IMIN(127,(int)floor(64*norm*tmp[i]))); /* Do not round to nearest */ 649 curr0 = IMIN(cost0, cost1 + lambda); 650 curr1 = IMIN(cost0 + lambda, cost1); 654 cost0 = IMIN(cost0, cost1); [all...] |
quant_bands.c | 221 qi = IMIN(1, qi); 226 qi = IMIN(qi, 0); 230 pi = 2*IMIN(i,20); 236 qi = IMAX(-1, IMIN(qi, 1)); 241 qi = IMIN(0, qi); 464 pi = 2*IMIN(i,20);
|
bands.c | 625 qb = IMIN(b-pulse_cap-(4<<BITRES), (b+N2*offset)/N2); 627 qb = IMIN(8<<BITRES, qb); 950 delta = IMIN(0, delta + (N<<BITRES>>(5-LM))); 952 mbits = IMAX(0, IMIN(b, (b-delta)/2)); [all...] |
arch.h | 79 #define IMIN(a,b) ((a) < (b) ? (a) : (b)) /**< Minimum int value. */
|
celt_decoder.c | 384 effEnd = IMAX(start, IMIN(end, mode->effEBands)); 429 bound = IMIN(bound, N/downsample); 507 exc_length = IMIN(2*pitch_index, MAX_PERIOD); 857 quanta = IMIN(width<<BITRES, IMAX(6<<BITRES, width)); 933 bound = IMIN(bound, N/st->downsample); [all...] |
/external/opencv/cvaux/src/ |
cveigenobjects.cpp | 256 int io, jo, imin = igr * nio, imax = imin + nio; local 263 for( io = imin; io < imax; io++, bu1 += n ) 274 for( io = imin; io < imax; io++, bu1 += n ) 307 for( io = imin; io < imax; io++, bu1 += n ) 698 int i, io, ie, imin = igr * nio, imax = imin + nio; local 703 for( i = 0; i < eigSize.width * (imax - imin); i++ ) 728 for( ie = imin; ie < imax; ie++ ) 733 float *be = ((float *) buffer) + ((ie - imin) * eigStep) [all...] |
/packages/apps/CertInstaller/res/values-az-rAZ/ |
strings.xml | 37 <string name="storage_error" msgid="8306802455802770779">"Sertifikat saxlan?lmad?. Yenid?n yoxlamaq üçün OK seçimin? toxunun."</string>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/ |
control.h | 410 int snd_ctl_elem_add_integer(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long imin, long imax, long istep); 411 int snd_ctl_elem_add_integer64(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long long imin, long long imax, long long istep);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/ |
control.h | 410 int snd_ctl_elem_add_integer(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long imin, long imax, long istep); 411 int snd_ctl_elem_add_integer64(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long long imin, long long imax, long long istep);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_info.c | 162 { 1, 2, 0, 0, 0, 0, COMP, "IMIN", TGSI_OPCODE_IMIN },
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_info.c | 162 { 1, 2, 0, 0, 0, 0, COMP, "IMIN", TGSI_OPCODE_IMIN },
|