代码搜索:Microphone array
找到约 10,000 项符合「Microphone array」的源代码
代码结果 10,000
www.eeworm.com/read/238168/4617892
c gui_array.c
/*
*********************************************************************************************************
* uC/GUI V3.98
* Univ
www.eeworm.com/read/237989/4618941
java array2005.java
package net.aetherial.gis.our.tomap.years.array;
import java.io.File;
/**
* Title:
*
* Description: 本类代表2005年的数组,包括
*
*
* 路线的名称
* 控制点1的经纬度
*
www.eeworm.com/read/235585/4648367
h gui_array.h
/*
*********************************************************************************************************
* uC/GUI V3.98
* Univ
www.eeworm.com/read/235585/4648402
c gui_array.c
/*
*********************************************************************************************************
* uC/GUI V3.98
* Univ
www.eeworm.com/read/235521/4650956
h db_array.h
#ifndef __DB_12864_H__
uchar code figures[]=
{
0x00,0xE0,0x10,0x08,0x08,0x10,0xE0,0x00,
0x00,0x0F,0x10,0x20,0x20,0x10,0x0F,0x00,/*"0",0*/
0x00,0x10,0x10,0xF8,0x00,0x00,0x00,0x00,
0x00,0x20,0
www.eeworm.com/read/233693/4665401
h table_array.h
/*
* table_array.h
* $Id: table_array.h,v 5.13 2005/09/12 15:24:16 dts12 Exp $
*/
#ifndef _TABLE_ARRAY_HANDLER_H_
#define _TABLE_ARRAY_HANDLER_H_
#ifdef __cplusplus
extern "C" {
#endif
www.eeworm.com/read/233448/4671230
c array1.c
// PR c++/13574
// { dg-options "" }
class A {
public:
A() : argc(0), argv() { };
private:
int argc;
char* argv[];
};
int main() {
A y;
}
www.eeworm.com/read/233448/4671784
c array8.c
struct A {
A ();
};
struct B {
A a1;
A a2;
};
A a;
struct B b[] = { { a, a }, { a, a } };
www.eeworm.com/read/233448/4671786
c array18.c
// PR c++/20142
// { dg-do run }
int n=4;
struct A
{
A() {}
A& operator= (const A&) { --n; return *this; }
};
struct B
{
A x[2][2];
};
int main()
{
B b;
b = b;
return n;
}
www.eeworm.com/read/233448/4671794
c array2.c
// Check that the type of an array is set correctly when flat initializers
// are used.
// { dg-do compile }
struct s { int a; int b; };
struct s x[] = { 1, 2, 3, 4 };
int y[sizeof (x) == 2 * sizeof