代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/233448/4671795
c array1.c
// Test that completing an array declared with a typedef doesn't change
// the typedef.
// { dg-do run }
typedef int iArr[];
const iArr array4={
1, 2, 3, 4
};
const iArr array3={
1, 2, 3
};
c
www.eeworm.com/read/233448/4671798
c array9.c
struct T {
T ();
};
void f () {
T t[2];
for (int i = 0; i < 10; ++i);
int i = 0;
}
www.eeworm.com/read/233448/4671802
c array7.c
struct S {
virtual void v () {}
void f (const float g[3]);
float h[3];
};
void g () {
S s1, s2;
s1 = s2;
}
void S::f (const float g[3]) {}
www.eeworm.com/read/233448/4671817
c array14.c
// PR c++/12883
// Bug: Destructor of array object not called if no prior
// instantiation of the template has happened.
// { dg-do run }
int ret = 1;
template struct X
{
X(int) { }
~X()
www.eeworm.com/read/233448/4671825
c array12.c
// PR c++/12253
// Bug: We were failing to destroy the temporary A passed to the
// constructor for b[0] before going on to construct b[1].
// { dg-do run }
extern "C" int printf (const char *, ...)
www.eeworm.com/read/233448/4671830
c array17.c
// { dg-do compile }
class StringMap {
const char empty_str[1];
public:
StringMap() : empty_str() {}
};
www.eeworm.com/read/233448/4671833
c array16.c
// { dg-do run }
// Copyright (C) 2004 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 8 Dec 2004
// PR 16681 too much memory used
// Origin: Matt LaFary
www.eeworm.com/read/233448/4671839
c array4.c
// { dg-do compile }
// Origin: Markus Breuer
// PR c++/6944
// Fail to synthesize copy constructor of multi-dimensional
// array of class.
#include
class Array
www.eeworm.com/read/233448/4671851
c array19.c
// { dg-do compile }
// { dg-options "" }
double a[0] = { };
const double b[0][1] = { };
www.eeworm.com/read/233448/4671855
c array10.c
// { dg-do compile }
// { dg-options "" }
typedef int __attribute__((vector_size (8))) vec;
vec foo[] = { (vec) {1, 2} };