代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/470693/1457488
c array6.c
// Special g++ Options: -O1
int count = 0;
double foo () {
count++;
return 0;
};
double bar () {
const double x[1] = { foo() };
return x[0];
};
int main ()
{
bar();
if (count != 1)
www.eeworm.com/read/470693/1457562
c array3.c
// Build don't link:
//
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 10 Aug 2000
// bug 386.C We ICE'd before emitting a diagnostic
www.eeworm.com/read/470693/1457624
c array2.c
// Build don't link:
extern const int a[];
extern const int a[];
extern const int a[];
www.eeworm.com/read/470693/1457625
c array1.c
// Build don't link:
char *stuff() {
char array[10]; // WARNING -
return array;
}
www.eeworm.com/read/470693/1457720
c array2.c
// Build don't link:
template
class Bar {};
template
class Huh {};
template
void foo(const Bar &x) {}
int main() {
foo(Bar());
www.eeworm.com/read/470693/1457726
c array1.c
template
unsigned size(T (&)[N]) { return N; }
template
unsigned size(T const (&)[N]) { return N; }
int main() {
short iarray[] = { 1, 2, 3, 4, 5 };
www.eeworm.com/read/470693/1457761
c array7.c
// Build don't link:
// Origin: Mark Mitchell
template
struct S {
enum E { e = 5 };
static int i[e];
};
template
int S::i[S::e];
www.eeworm.com/read/470693/1458074
c array4.c
// Test to make sure that the array bounds are treated as an expression
// in template parm substitution.
// Written by Jason Merrill
// Build don't link:
template void
www.eeworm.com/read/470693/1458139
c array5.c
// Build don't link:
// Origin: Mark Mitchell
template
void h(T&);
template
void g ()
{
h ("abcdefghi");
}
template void g();
template
www.eeworm.com/read/470693/1458207
c array6.c
// Build don't link:
// Origin: Alfred Minarik
// Special g++ Options:
template
struct basic_filebuf
{
virtual void
underflow()
{
int __s