代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/470693/1458319
c array3.c
// Build don't link:
// Origin: Brendan Kehoe
template int foo(char[4][x]) { return x; }
int (*bar)(char[4][3]) = &foo;
www.eeworm.com/read/470693/1458554
c array2.c
// Build don't link:
// GROUPS passed arrays
// excess errors test - XFAIL *-*-*
// array file
// Message-Id:
// From: frode@auticon.no
// Subject: prototype b
www.eeworm.com/read/470693/1458557
c array1.c
// GROUPS passed arrays
// array file
// Message-Id:
// From: dougm@cs.rice.edu (Doug Moore)
// Subject: constructors not called on new'ed array elements
// Date: Sat,
www.eeworm.com/read/470693/1458826
c array1.c
// Build don't link:
// Special g++ Options: -fconserve-space -fcommon
// GROUPS passed array-bindings
extern "C" int printf (const char *, ...);
char array[~(~0ul>>1)|~(0ul>>3)]; // ERROR - overfl
www.eeworm.com/read/470693/1458990
c array-refs.c
// Build don't link:
// GROUPS passed arm
int a, b;
// declaring an array of references should be illegal
int & v[ 2] = { a, b};// ERROR - .*
www.eeworm.com/read/470693/1459018
c new-array.c
// Build don't link:
// 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[];// E
www.eeworm.com/read/470693/1459103
c array2.c
// This testcase used to cause a crash on the Alpha.
// Special g++ Options: -w
// Build don't link:
struct A {
int i;
~A() { }
};
A f (int n)
{
A a[n];
}
www.eeworm.com/read/470693/1459104
c array1.c
// Testcase for assignment of non-array to array (assigns the same value to
// each member)
// Build don't link:
// Special Options:
typedef struct {} ct2d_rigid, ct2d_rigid_a[1];
class ccInspection
www.eeworm.com/read/470693/1459118
c array4.c
// Build don't link:
// Special g++ Options:
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Mark Mitchell 19 Mar 2000
// Nathan Sidwell
www.eeworm.com/read/470693/1459139
c array3.c
// Build don't link:
// Origin: Mark Mitchell
// Special g++ Options:
void *vp;
void f ()
{
int i = (*((int (*)[i]) vp))[0];
}