Searched refs:eq (Results 1 - 25 of 1181) sorted by relevance

1234567891011>>

/external/adhd/cras/src/dsp/
H A Deq.h21 struct eq;
24 struct eq *eq_new();
27 void eq_free(struct eq *eq);
32 * eq - The EQ we want to use.
39 * 0 if success. -1 if the eq has no room for more biquads.
41 int eq_append_biquad(struct eq *eq, enum biquad_type type, float freq, float Q,
48 * eq - The EQ we want to use.
51 * 0 if success. -1 if the eq ha
[all...]
/external/autotest/client/site_tests/security_Minijail0/src/
H A Dtest-pid-file10 [ "$$" -eq "$pid" ]
/external/llvm/test/MC/AArch64/
H A Darm64-elf-reloc-condbr.s4 b.eq somewhere
/external/icu/icu4c/source/i18n/
H A Dnumber_decimfmtprops.cpp60 bool eq = true; local
61 eq = eq && compactStyle == other.compactStyle;
62 eq = eq && currency == other.currency;
63 eq = eq && currencyPluralInfo.fPtr.getAlias() == other.currencyPluralInfo.fPtr.getAlias();
64 eq = eq && currencyUsage == other.currencyUsage;
65 eq
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_base64.py10 eq = self.assertEqual
11 eq(base64.encodestring("www.python.org"), "d3d3LnB5dGhvbi5vcmc=\n")
12 eq(base64.encodestring("a"), "YQ==\n")
13 eq(base64.encodestring("ab"), "YWI=\n")
14 eq(base64.encodestring("abc"), "YWJj\n")
15 eq(base64.encodestring(""), "")
16 eq(base64.encodestring("abcdefghijklmnopqrstuvwxyz"
23 eq(base64.encodestring(bytearray('abc')), 'YWJj\n')
26 eq = self.assertEqual
27 eq(base6
[all...]
H A Dtest_repr.py25 eq = self.assertEqual
26 eq(r("abc"), "'abc'")
27 eq(r("abcdefghijklmnop"),"'abcdefghijklmnop'")
31 eq(r(s), expected)
33 eq(r("\"'"), repr("\"'"))
36 eq(r(s), expected)
39 eq = self.assertEqual
40 eq(r((1,)), "(1,)")
43 eq(r(t3), "(1, 2, 3)")
48 eq(r
[all...]
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
H A Deq.pass.cpp14 // static constexpr bool eq(char_type c1, char_type c2);
21 assert(std::char_traits<char>::eq('a', 'a'));
22 assert(!std::char_traits<char>::eq('a', 'A'));
/external/adhd/cras/src/dsp/tests/
H A Deq_test.c12 #include "eq.h"
32 struct eq *eq; local
41 eq = eq_new();
42 eq_append_biquad(eq, BQ_PEAKING, 380/NQ, 3, -10);
43 eq_append_biquad(eq, BQ_PEAKING, 720/NQ, 3, -12);
44 eq_append_biquad(eq, BQ_PEAKING, 1705/NQ, 3, -8);
45 eq_append_biquad(eq, BQ_HIGHPASS, 218/NQ, 0.7, -10.2);
46 eq_append_biquad(eq, BQ_PEAKING, 580/NQ, 6, -8);
47 eq_append_biquad(eq, BQ_HIGHSHEL
63 process(struct eq *eq, float *data, int count) argument
77 struct eq *eq; local
[all...]
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
H A Dinsert_init.pass.cpp46 Eq eq = c.equal_range(1); local
47 assert(std::distance(eq.first, eq.second) == 2);
48 C::iterator k = eq.first;
54 eq = c.equal_range(2);
55 assert(std::distance(eq.first, eq.second) == 2);
56 k = eq.first;
62 eq = c.equal_range(3);
63 assert(std::distance(eq
92 Eq eq = c.equal_range(1); local
[all...]
H A Dinsert_range.pass.cpp45 Eq eq = c.equal_range(1); local
46 assert(std::distance(eq.first, eq.second) == 2);
47 C::iterator k = eq.first;
53 eq = c.equal_range(2);
54 assert(std::distance(eq.first, eq.second) == 2);
55 k = eq.first;
61 eq = c.equal_range(3);
62 assert(std::distance(eq
92 Eq eq = c.equal_range(1); local
[all...]
H A Derase_range.pass.cpp46 Eq eq = c.equal_range(1); local
47 assert(std::distance(eq.first, eq.second) == 2);
48 k = eq.first;
54 eq = c.equal_range(2);
55 assert(std::distance(eq.first, eq.second) == 2);
56 k = eq.first;
62 eq = c.equal_range(3);
63 assert(std::distance(eq
123 Eq eq = c.equal_range(1); local
[all...]
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/
H A Deq.pass.cpp14 // static constexpr bool eq(char_type c1, char_type c2);
25 assert(std::char_traits<char16_t>::eq(u'a', u'a'));
26 assert(!std::char_traits<char16_t>::eq(u'a', u'A'));
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/
H A Deq.pass.cpp14 // static constexpr bool eq(char_type c1, char_type c2);
25 assert(std::char_traits<char32_t>::eq(U'a', U'a'));
26 assert(!std::char_traits<char32_t>::eq(U'a', U'A'));
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
H A Deq.pass.cpp14 // static constexpr bool eq(char_type c1, char_type c2);
21 assert(std::char_traits<wchar_t>::eq(L'a', L'a'));
22 assert(!std::char_traits<wchar_t>::eq(L'a', L'A'));
/external/lisa/
H A Dinit_env21 if [ $? -eq 0 ]; then
27 if [ $? -eq 0 ]; then
/external/syslinux/utils/
H A Dsyslinux2ansi13 if ( $ch eq "\x1A" ) { # <SUB> <Ctrl-Z> EOF
15 } elsif ( $ch eq "\x0C" ) { # <FF> <Ctrl-L> Clear screen
17 } elsif ( $ch eq "\x0F" ) { # <SI> <Ctrl-O> Attribute change
36 } elsif ( $ch eq "\x18" ) { # <CAN> <Ctrl-X> Display image
42 } elsif ( $ch eq "\x0D" ) { # <CR> <Ctrl-M> Carriage return
44 } elsif ( $ch eq "\x0A" ) { # <LF> <Ctrl-J> Line feed
/external/python/cpython3/Lib/test/
H A Dtest_reprlib.py28 eq = self.assertEqual
29 eq(r("abc"), "'abc'")
30 eq(r("abcdefghijklmnop"),"'abcdefghijklmnop'")
34 eq(r(s), expected)
36 eq(r("\"'"), repr("\"'"))
39 eq(r(s), expected)
42 eq = self.assertEqual
43 eq(r((1,)), "(1,)")
46 eq(r(t3), "(1, 2, 3)")
51 eq(r
[all...]
H A Dtest_mimetypes.py20 eq = self.assertEqual
21 eq(self.db.guess_type("foo.html"), ("text/html", None))
22 eq(self.db.guess_type("foo.tgz"), ("application/x-tar", "gzip"))
23 eq(self.db.guess_type("foo.tar.gz"), ("application/x-tar", "gzip"))
24 eq(self.db.guess_type("foo.tar.Z"), ("application/x-tar", "compress"))
25 eq(self.db.guess_type("foo.tar.bz2"), ("application/x-tar", "bzip2"))
26 eq(self.db.guess_type("foo.tar.xz"), ("application/x-tar", "xz"))
29 eq = self.assertEqual
31 eq(guess_type("data:,thisIsTextPlain"), ("text/plain", None))
32 eq(guess_typ
[all...]
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.count/
H A Dcount_if.pass.cpp24 struct eq { struct
25 TEST_CONSTEXPR eq (int val) : v(val) {} function in struct:eq
34 return (std::count_if(std::begin(ia), std::end(ia), eq(2)) == 3)
35 && (std::count_if(std::begin(ib), std::end(ib), eq(9)) == 0)
46 eq(2)) == 3);
49 eq(7)) == 0);
52 eq(2)) == 0);
/external/zlib/src/contrib/puff/
H A DMakefile19 @echo '04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
20 @echo '00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
21 @echo '00 00 00 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 254
22 @echo '00 01 00 fe ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
24 @echo '02 7e ff ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246
25 @echo '02' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
26 @echo '04 80 49 92 24 49 92 24 0f b4 ff ff c3 04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
27 @echo '04 80 49 92 24 49 92 24 71 ff ff 93 11 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 249
28 @echo '04 c0 81 08 00 00 00 00 20 7f eb 0b 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246
30 @echo '1a 07' | xxd -r -p | puft 2> /dev/null || test $$? -eq 24
[all...]
/external/ltp/testcases/kernel/fs/fs_bind/bin/
H A Dcheck_prop31 if [ $reverse -eq 1 ]
50 if [ $reverse -eq 1 ]
64 if [ $reverse -eq 1 ]
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.cnstr/
H A Dinit_size_hash_equal_allocator.pass.cpp59 Eq eq = c.equal_range(1); local
60 assert(std::distance(eq.first, eq.second) == 2);
61 C::const_iterator i = eq.first;
67 eq = c.equal_range(2);
68 assert(std::distance(eq.first, eq.second) == 2);
69 i = eq.first;
76 eq = c.equal_range(3);
77 assert(std::distance(eq
117 Eq eq = c.equal_range(1); local
176 Eq eq = c.equal_range(1); local
[all...]
H A Drange_size_hash_equal_allocator.pass.cpp63 Eq eq = c.equal_range(1); local
64 assert(std::distance(eq.first, eq.second) == 2);
65 C::const_iterator i = eq.first;
71 eq = c.equal_range(2);
72 assert(std::distance(eq.first, eq.second) == 2);
73 i = eq.first;
80 eq = c.equal_range(3);
81 assert(std::distance(eq
124 Eq eq = c.equal_range(1); local
185 Eq eq = c.equal_range(1); local
[all...]
H A Dassign_move.pass.cpp67 Eq eq = c.equal_range(1); local
68 assert(std::distance(eq.first, eq.second) == 2);
69 C::const_iterator i = eq.first;
75 eq = c.equal_range(2);
76 assert(std::distance(eq.first, eq.second) == 2);
77 i = eq.first;
84 eq = c.equal_range(3);
85 assert(std::distance(eq
132 Eq eq = c.equal_range(1); local
197 Eq eq = c.equal_range(1); local
262 Eq eq = c.equal_range(1); local
[all...]
H A Dinit.pass.cpp52 Eq eq = c.equal_range(1); local
53 assert(std::distance(eq.first, eq.second) == 2);
54 C::const_iterator i = eq.first;
60 eq = c.equal_range(2);
61 assert(std::distance(eq.first, eq.second) == 2);
62 i = eq.first;
69 eq = c.equal_range(3);
70 assert(std::distance(eq
105 Eq eq = c.equal_range(1); local
160 Eq eq = c.equal_range(1); local
216 Eq eq = c.equal_range(1); local
[all...]

Completed in 4376 milliseconds

1234567891011>>