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

1 2 3 4 5 6 7 8 91011>>

  /external/adhd/cras/src/dsp/
eq.h 13 /* An EQ is a chain of biquad filters. See Web Audio API spec for details of the
18 /* Maximum number of biquad filters an EQ can have */
21 struct eq;
23 /* Create an EQ. */
24 struct eq *eq_new();
26 /* Free an EQ. */
27 void eq_free(struct eq *eq);
29 /* Append a biquad filter to an EQ. An EQ can have at most MAX_BIQUADS_PER_E
    [all...]
  /external/icu/icu4c/source/i18n/
number_decimfmtprops.cpp 81 bool eq = true; local
84 eq = eq && compactStyle == other.compactStyle;
85 eq = eq && currency == other.currency;
86 eq = eq && currencyPluralInfo.fPtr.getAlias() == other.currencyPluralInfo.fPtr.getAlias();
87 eq = eq && currencyUsage == other.currencyUsage;
88 eq = eq && decimalSeparatorAlwaysShown == other.decimalSeparatorAlwaysShown
    [all...]
  /external/llvm/test/MC/AArch64/
arm64-elf-reloc-condbr.s 4 b.eq somewhere
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/
arm64-elf-reloc-condbr.s 7 b.eq somewhere
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
csdb-errors.s 4 it eq
  /external/python/cpython3/Lib/test/
test_future.py 145 eq = self.assertAnnotationEqual
146 eq('...')
147 eq("'some_string'")
148 eq("b'\\xa3'")
149 eq('Name')
150 eq('None')
151 eq('True')
152 eq('False')
153 eq('1')
154 eq('1.0'
    [all...]
  /external/grpc-grpc/tools/run_tests/sanity/
check_bad_dependencies.sh 21 test "$(bazel query 'somepath("//:grpc_unsecure", "//external:libssl")' 2>/dev/null | wc -l)" -eq 0 || exit 1
22 test "$(bazel query 'somepath("//:grpc++_unsecure", "//external:libssl")' 2>/dev/null | wc -l)" -eq 0 || exit 1
23 test "$(bazel query 'somepath("//:grpc++_codegen_proto", "//external:libssl")' 2>/dev/null | wc -l)" -eq 0 || exit 1
24 test "$(bazel query 'somepath("//test/cpp/microbenchmarks:helpers", "//external:libssl")' 2>/dev/null | wc -l)" -eq 0 || exit 1
28 test "$(bazel query 'deps("//:grpc")' 2>/dev/null | egrep 'src/cpp|include/grpcpp' | wc -l)" -eq 0 || exit 1
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_base64.py 10 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"
24 eq = self.assertEqual
25 eq(base64.decodestring("d3d3LnB5dGhvbi5vcmc=\n"), "www.python.org")
26 eq(base64.decodestring("YQ==\n"), "a")
    [all...]
test_mimetypes.py 19 eq = self.assertEqual
20 eq(self.db.guess_type("foo.html"), ("text/html", None))
21 eq(self.db.guess_type("foo.tgz"), ("application/x-tar", "gzip"))
22 eq(self.db.guess_type("foo.tar.gz"), ("application/x-tar", "gzip"))
23 eq(self.db.guess_type("foo.tar.Z"), ("application/x-tar", "compress"))
26 eq = self.assertEqual
28 eq(guess_type("data:,thisIsTextPlain"), ("text/plain", None))
29 eq(guess_type("data:;base64,thisIsTextPlain"), ("text/plain", None))
30 eq(guess_type("data:text/x-foo,thisIsTextXFoo"), ("text/x-foo", None))
33 eq = self.assertEqual
    [all...]
test_gettext.py 92 eq = self.assertEqual
94 eq(_('albatross'), 'albatross')
95 eq(_(u'mullusk'), 'bacon')
96 eq(_(r'Raymond Luxury Yach-t'), 'Throatwobbler Mangrove')
97 eq(_(ur'nudge nudge'), 'wink wink')
100 eq = self.assertEqual
102 eq(_("albatross"), 'albatross')
103 eq(_(u"mullusk"), 'bacon')
104 eq(_(r"Raymond Luxury Yach-t"), 'Throatwobbler Mangrove')
105 eq(_(ur"nudge nudge"), 'wink wink')
    [all...]
test_repr.py 25 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(r2.repr(t3), expected)
    [all...]
  /external/python/cpython2/Lib/test/
test_base64.py 10 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(base64.decodestring("d3d3LnB5dGhvbi5vcmc=\n"), "www.python.org"
    [all...]
  /external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
eq.pass.cpp 14 // 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/linux-kselftest/tools/testing/selftests/ftrace/test.d/00basic/
snapshot.tc 17 test `cat tracing_on` -eq 0
26 test `cat tracing_on` -eq 1
  /external/curl/tests/libtest/
test610.pl 13 if ($cmd eq "mkdir") {
16 elsif ($cmd eq "rmdir") {
19 elsif ($cmd eq "rm") {
22 elsif ($cmd eq "move") {
26 elsif ($cmd eq "gone") {
  /external/adhd/cras/src/dsp/tests/
eq_test.c 12 #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_HIGHSHELF, 8000/NQ, 3, 2)
77 struct eq *eq; local
    [all...]
  /external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
insert_init.pass.cpp 45 typedef std::pair<C::iterator, C::iterator> Eq;
46 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
92 Eq eq = c.equal_range(1); local
    [all...]
erase_range.pass.cpp 45 typedef std::pair<C::iterator, C::iterator> Eq;
46 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
123 Eq eq = c.equal_range(1); local
    [all...]
  /external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/
eq.pass.cpp 14 // 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/
eq.pass.cpp 14 // 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.char8_t/
eq.pass.cpp 15 // static constexpr bool eq(char_type c1, char_type c2);
25 assert( std::char_traits<char8_t>::eq(u8'a', u8'a'));
26 assert(!std::char_traits<char8_t>::eq(u8'a', u8'A'));
  /external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
eq.pass.cpp 14 // 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/curl/tests/
http2-server.pl 37 if($ARGV[0] eq '--verbose') {
40 elsif($ARGV[0] eq '--pidfile') {
46 elsif($ARGV[0] eq '--nghttpx') {
52 elsif($ARGV[0] eq '--port') {
58 elsif($ARGV[0] eq '--connect') {
65 elsif($ARGV[0] eq '--logfile') {
  /external/python/cpython3/Lib/idlelib/idle_test/
test_codecontext.py 86 eq = self.assertEqual
90 eq(cc.editwin, ed)
91 eq(cc.text, ed.text)
92 eq(cc.textfont, ed.text['font'])
94 eq(cc.info, [(0, -1, '', False)])
95 eq(cc.topvisible, 1)
96 eq(self.root.tk.call('after', 'info', self.cc.t1)[1], 'timer')
97 eq(self.root.tk.call('after', 'info', self.cc.t2)[1], 'timer')
119 eq = self.assertEqual
128 eq(toggle(), 'break'
    [all...]
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.count/
count_if.pass.cpp 24 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);

Completed in 935 milliseconds

1 2 3 4 5 6 7 8 91011>>