HomeSort by relevance Sort by last modified time
    Searched refs:smax (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
get_scaling_square.c 26 int16_t smax = -1; local
35 smax = (sabs > smax ? sabs : smax);
37 t = WebRtcSpl_NormW32(WEBRTC_SPL_MUL(smax, smax));
39 if (smax == 0)
auto_correlation.c 20 int16_t smax = 0; local
31 smax = WebRtcSpl_MaxAbsValueW16(in_vector, in_vector_length);
34 // samples so that (in_vector_length * smax * smax) will not overflow.
35 if (smax == 0) {
40 // Number of bits to normalize smax.
41 int t = WebRtcSpl_NormW32(WEBRTC_SPL_MUL(smax, smax));
  /external/webrtc/src/common_audio/signal_processing/
get_scaling_square.c 24 WebRtc_Word16 smax = -1; local
33 smax = (sabs > smax ? sabs : smax);
35 t = WebRtcSpl_NormW32(WEBRTC_SPL_MUL(smax, smax));
37 if (smax == 0)
auto_correlation.c 28 WebRtc_Word16 smax; // Sample max local
43 smax = WebRtcSpl_MaxAbsValueW16(in_vector, in_vector_length);
46 // (in_vector_length * smax * smax) will not overflow.
48 if (smax == 0)
54 int t = WebRtcSpl_NormW32(WEBRTC_SPL_MUL(smax, smax)); // # of bits to normalize smax
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
perfect.c 33 predetermined mapping of 0..255 into 0..smax-1. *tab* is an
96 /* initialize scramble[] with distinct random values in 0..smax-1 */
99 ub4 smax) /* scramble values should be in 0..smax-1 */
103 /* fill scramble[] with distinct random integers in 0..smax-1 */
106 scramble[i] = permute(i, phash_log2(smax));
198 ub4 smax, /* maximum range of computable hash values */
240 if (smax <= 1)
264 ub4 smax, /* range of computable hash values */
287 if (smax <= 1
    [all...]
perfect.h 125 gencode *final, ub4 *scramble, ub4 *smax, key *keys, ub4 nkeys,
129 int inithex(key *keys, ub4 nkeys, ub4 alen, ub4 blen, ub4 smax, ub4 salt,
genperf.c 78 ub4 smax, /* range of scramble[] */
86 if (smax > UB2MAXVAL+1) {
105 if (smax <= UB1MAXVAL+1 || blen >= USE_SCRAMBLE)
159 ub4 smax; /* scramble[] values in 0..smax-1, a power of 2 */ local
198 scramble, &smax, keys, nkeys, &form);
205 /* output the dir table: this should loop up to smax for NORMAL_HP,
232 make_c_tab(out, tab, smax, blen, scramble);
  /external/llvm/test/MC/AArch64/
neon-max-min.s 8 smax v0.8b, v1.8b, v2.8b
9 smax v0.16b, v1.16b, v2.16b
10 smax v0.4h, v1.4h, v2.4h
11 smax v0.8h, v1.8h, v2.8h
12 smax v0.2s, v1.2s, v2.2s
13 smax v0.4s, v1.4s, v2.4s
15 // CHECK: smax v0.8b, v1.8b, v2.8b // encoding: [0x20,0x64,0x22,0x0e]
16 // CHECK: smax v0.16b, v1.16b, v2.16b // encoding: [0x20,0x64,0x22,0x4e]
17 // CHECK: smax v0.4h, v1.4h, v2.4h // encoding: [0x20,0x64,0x62,0x0e]
18 // CHECK: smax v0.8h, v1.8h, v2.8h // encoding: [0x20,0x64,0x62,0x4e
    [all...]
  /external/libgsm/src/
lpc.c 36 word temp, smax, scalauto; local
47 smax = 0;
50 if (temp > smax) smax = temp;
55 if (smax == 0) scalauto = 0;
57 assert(smax > 0);
58 scalauto = 4 - gsm_norm( (longword)smax << 16 );/* sub(4,..) */
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFA.java 502 int smax = Label.MIN_ATOM_VALUE - 1;
511 if ( label.getAtom()>smax ) {
512 smax = label.getAtom();
523 if ( labels.getMaxElement()>smax ) {
524 smax = labels.getMaxElement();
529 if ( smax<0 ) {
532 smax = Label.MIN_CHAR_VALUE;
536 max.set(s.stateNumber, Utils.integer((char)smax));
538 if ( smax<0 || smin>Label.MAX_CHAR_VALUE || smin<0 ) {
548 int smax = ((Integer)max.get(s.stateNumber)).intValue()
    [all...]
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 424 TEST_F(ConstantRangeTest, SMax) {
425 EXPECT_EQ(Full.smax(Full), Full);
426 EXPECT_EQ(Full.smax(Empty), Empty);
427 EXPECT_EQ(Full.smax(Some), ConstantRange(APInt(16, 0xa),
429 EXPECT_EQ(Full.smax(Wrap), Full);
430 EXPECT_EQ(Full.smax(One), ConstantRange(APInt(16, 0xa),
432 EXPECT_EQ(Empty.smax(Empty), Empty);
433 EXPECT_EQ(Empty.smax(Some), Empty);
434 EXPECT_EQ(Empty.smax(Wrap), Empty);
435 EXPECT_EQ(Empty.smax(One), Empty)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
LineGraph.java 85 String smax= this.fDimension.getDisplayValue(max); local
86 Point emax= g.stringExtent(smax);
102 g.drawString(smax, PADDING/2+labelWidth-emax.x, top, true);
TimeLineGraph.java 49 String smax= this.fDimension.getDisplayValue(max); local
50 Point emax= g.stringExtent(smax);
66 g.drawString(smax, PADDING/2+labelWidth-emax.x, top, true);
  /external/llvm/include/llvm/IR/
ConstantRange.h 221 /// smax - Return a new range representing the possible values resulting
223 ConstantRange smax(const ConstantRange &Other) const;
  /development/ndk/platforms/android-9/arch-mips/include/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
errors.c 598 int s, t, sev, smax, tmax, sevmax; local
602 smax = SOURCE_COUNT;
604 smax = source+1;
622 for (s = source; s < smax; s++)
  /external/libhevc/common/arm64/
ihevc_deblk_chroma_horz.s 155 smax v4.8h, v18.8h , v16.8h
  /external/mesa3d/src/mesa/main/
errors.c 598 int s, t, sev, smax, tmax, sevmax; local
602 smax = SOURCE_COUNT;
604 smax = source+1;
622 for (s = source; s < smax; s++)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
double-int.h 181 double_int smax (double_int b);
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock
  /prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock
  /prebuilts/ndk/9/platforms/android-13/arch-mips/usr/include/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock
  /prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/asm/
sgiarcs.h 357 int smax; member in struct:linux_smonblock

Completed in 611 milliseconds

1 2