代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/233448/4675161
c array1.c
// { dg-do assemble }
// { dg-options "" }
// Testcase for assignment of non-array to array (assigns the same value to
// each member)
// Special Options:
typedef struct {} ct2d_rigid, ct2d_rigid_a
www.eeworm.com/read/233448/4675175
c array4.c
// { dg-do assemble }
// { dg-options "" }
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Mark Mitchell 19 Mar 2000
// Nathan Sidwell
www.eeworm.com/read/233448/4675195
c array3.c
// { dg-do assemble }
// { dg-options "" }
// Origin: Mark Mitchell
void *vp;
void f ()
{
int i = (*((int (*)[i]) vp))[0];
}
www.eeworm.com/read/233448/4683883
c array-4.c
/* { dg-do run } */
/* { dg-options "" } */
/* Verify that GCC's initialized flexible array member extension
works properly. */
extern void abort(void);
extern void exit(int);
struct f { int w;
www.eeworm.com/read/233448/4684456
c array-1.c
/* Simplified from ncurses 5.0's pad.c
by Alexandre Oliva
Copyright (C) 1999 Free Software Foundation */
/* { dg-do compile } */
extern char foo[1];
char foo[] = ""
www.eeworm.com/read/233448/4684611
c array-5.c
/* { dg-do compile } */
/* { dg-options "" } */
/* Check compatibility of array declarations. */
/* Incomplete decl matches. */
extern char arr0[];
char arr0[1];
/* Two integral expressions must
www.eeworm.com/read/233448/4684860
c array-3.c
/* { dg-do compile } */
/* { dg-options "" } */
/* ISO C99 flexible array members don't have a size. GCC's zero-length
array extension does. */
struct f { int w; int x[0]; } f;
struct g { int w
www.eeworm.com/read/233448/4685303
c array-6.c
/* PR c/5597 */
/* { dg-do compile } */
/* { dg-options "" } */
/* Verify that GCC forbids non-static initialization of
flexible array members. */
struct str { int len; char s[]; };
struct str a
www.eeworm.com/read/233448/4685321
c array-2.c
/* { dg-do compile } */
/* { dg-options "" } */
/* Verify that we can't do things to get ourselves in trouble
with GCC's initialized flexible array member extension. */
struct f { int w; int x[]
www.eeworm.com/read/233448/4685672
c array-7.c
/* Test for array of incomplete structure type - Zack Weinberg in
. */
/* { dg-do compile } */
/* { dg-options "" } */
struct foo;
void
f