代码搜索:Microphone array

找到约 10,000 项符合「Microphone array」的源代码

代码结果 10,000
www.eeworm.com/read/233448/4672525

c array7.c

// PR c++/16246 template void foo (T, T); template int bar( const char(&val)[M] ) { foo (N,M); } int i = bar("1234");
www.eeworm.com/read/233448/4672715

c array4.c

// PR c++/14122 extern const char str[]; template struct A { template void foo(); }; template class A;
www.eeworm.com/read/233448/4672757

c array10.c

// Copyright (C) 2005 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 5 Jan 2005 // PR 19270: ICE // Origin: Ralf Wildenhues templ
www.eeworm.com/read/233448/4672761

c array5.c

// PR c++/15427 template struct A { T foo; }; template struct B { A _squares[2]; };
www.eeworm.com/read/233448/4672797

c array6.c

// PR c++/15287 struct S {}; struct Array { S operator[](int); } array; void (S::*mem_fun_ptr)(); template void foo() { (array[0].*mem_fun_ptr)(); }
www.eeworm.com/read/233448/4672805

c array13.c

// PR c++/20208 // { dg-do run } // { dg-options "-O2" } extern "C" void abort(); template inline void *Foo (T arg) { return &arg[0]; } int main () { int bry[2]; if (Foo(br
www.eeworm.com/read/233448/4672811

c array11.c

// { dg-do compile } // Origin: Giovanni Bajo // PR c++/19208: Fold dependent array domains template struct if_t { typedef int type; }; template
www.eeworm.com/read/233448/4672869

c array3.c

// { dg-do compile } // Origin: Graeme Prentice // PR c++/13474: An array domain which is value-dependent must be folded // in time for deduction. template< i
www.eeworm.com/read/233448/4673214

c array2.c

// { dg-do run } int i; struct S { S () { ++i; }; S (int) { }; }; int main() { S s[3][3] = { 2 }; if (i != 8) return 1; }
www.eeworm.com/read/233448/4673216

c array1.c

// { dg-do run } int i; struct S { S (int) { ++i; if (i == 3) throw 3; }; S () {} ~S() { --i; } }; int main() { try { S s[5] = { 0, 1, 2, 3, 4 }; } catch (...)