代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/233448/4671857
c array5.c
// { dg-do run }
// Copyright (C) 2002 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij
// Incorrect construction and destruction of multi-dimensional
www.eeworm.com/read/233448/4671858
c array15.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/4671865
c array6.c
// { dg-do compile }
char arr [][4] = { "one", "two" };
const char arr2[][4] = { "one", "two" };
signed char arr3[][4] = { "one", "two" };
const unsigned char arr4[][4] = { "one", "two" };
volatile w
www.eeworm.com/read/233448/4671869
c array13.c
template
struct test_disjoint_set {
static void do_test()
{
unsigned int elts[]
= { 0, 1, 2, 3 };
const int N = sizeof(elts)/sizeof(*elts);
}
};
www.eeworm.com/read/233448/4671872
c array11.c
/* PR 11665
Orgin: jwhite@cse.unl.edu
The problem was in initializer_constant_valid_p,
"for a CONSTRUCTOR, only the last element
of the CONSTRUCTOR was being checked"
(from the email
www.eeworm.com/read/233448/4671882
c array3.c
// PR c++/6331
// Bug: we were generating a badly cv-qualified ARRAY_TYPE in the
// synthesized copy constructor for A, which then became the canonical
// version, confusing later uses.
struct A {
www.eeworm.com/read/233448/4671914
c array1.c
// Copyright (C) 2004 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Nov 2004
// PR 18672:ICE gimplifying incomplete array type.
// Origin: Magnus Fromre
www.eeworm.com/read/233448/4672291
c array1.c
// Test typeid of multidimensional array with no bounds.
// { dg-do compile }
#include
int main()
{
const char *s = typeid(double[][]).name(); // { dg-error "bounds|confused" }
return 0
www.eeworm.com/read/233448/4672463
c array8.c
// PR c++/18121
// We were trying to layout the array
// type but since the type/value of A::i
// was not known at template declation type,
// we were crashing
template struct A
{
static
www.eeworm.com/read/233448/4672516
c array9.c
// PR c++/18429
int subtrees = 4;
template< class T >
struct Tree {
Tree* L[subtrees]; // { dg-error "" }
Tree* R[subtrees]; // { dg-error "" }
~Tree()
{
delete [] L[0]; // { dg-error ""