代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/470720/1445446
c array4.c
// Build don't link:
// Origin: j_bouis@hotmail.com
enum { FOO = 3 };
int* arr = new int[FOO];
www.eeworm.com/read/470720/1445501
c array5.c
// Build don't link:
// We tried to create a temporary of unknown size and crashed.
extern int a1[];
extern int a2[];
int foo(int p)
{
int x = (p ? a1 : a2)[1];
return x;
}
www.eeworm.com/read/470720/1445542
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/470720/1445616
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/470720/1445678
c array2.c
// Build don't link:
extern const int a[];
extern const int a[];
extern const int a[];
www.eeworm.com/read/470720/1445679
c array1.c
// Build don't link:
char *stuff() {
char array[10]; // WARNING -
return array;
}
www.eeworm.com/read/470720/1445774
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/470720/1445780
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/470720/1445815
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/470720/1446128
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