代码搜索:Microphone array

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

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

c array4.c

// { dg-do assemble } // Test to make sure that the array bounds are treated as an expression // in template parm substitution. // Written by Jason Merrill template vo
www.eeworm.com/read/233448/4674201

c array5.c

// { dg-do assemble } // Origin: Mark Mitchell template void h(T&); template void g () { h ("abcdefghi"); } template void g(); template
www.eeworm.com/read/233448/4674269

c array6.c

// { dg-do assemble } // { dg-options "" } // Origin: Alfred Minarik template struct basic_filebuf { virtual void underflow() { int __siz
www.eeworm.com/read/233448/4674380

c array3.c

// { dg-do assemble } // Origin: Brendan Kehoe template int foo(char[4][x]) { return x; } int (*bar)(char[4][3]) = &foo;
www.eeworm.com/read/233448/4674613

c array2.c

// { dg-do assemble } // GROUPS passed arrays // array file // Message-Id: // From: frode@auticon.no // Subject: prototype bug ? // Date: Thu, 5 Nov 92 15:37:34
www.eeworm.com/read/233448/4674616

c array1.c

// { dg-do run } // GROUPS passed arrays // array file // Message-Id: // From: dougm@cs.rice.edu (Doug Moore) // Subject: constructors not called on new'ed array elem
www.eeworm.com/read/233448/4674883

c array1.c

// { dg-do assemble } // { dg-options "-fconserve-space -fcommon" } // GROUPS passed array-bindings extern "C" int printf (const char *, ...); char array[~(~0ul>>1)|~(0ul>>3)]; // { dg-error "" } o
www.eeworm.com/read/233448/4675047

c array-refs.c

// { dg-do assemble } // GROUPS passed arm int a, b; // declaring an array of references should be illegal int & v[ 2] = { a, b};// { dg-error "" } .*
www.eeworm.com/read/233448/4675075

c new-array.c

// { dg-do assemble } // GROUPS passed operator-new typedef struct { int a; } AStruct; void MakeBug() { AStruct *job; // This used to crash, it should now give error(s). job = new AStruct[];//
www.eeworm.com/read/233448/4675160

c array2.c

// { dg-do assemble } // { dg-options "-w" } // This testcase used to cause a crash on the Alpha. struct A { int i; ~A() { } }; A f (int n) { A a[n]; }