代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/163987/5501689
pas sample - array as parameter.pas
// This script not working !
// Arrays as parameters not supported now....
// Sorry....
unit cray;
function main: string;
var
A: array[1..10] of integer;
begin
InitArray(A);
//Resul
www.eeworm.com/read/163987/5501698
pas sample - array read.pas
var
A: array[1..10] of integer;
begin
Result := A[10];
end;
www.eeworm.com/read/162614/5517881
c array-size2.c
// PR c/25682
// { dg-do compile }
// Test whether we don't ICE on invalid array sizes.
struct S
{
char a[4];
int b;
};
extern void bar (char *, char *);
void
foo (void)
{
char g[(char *) &((
www.eeworm.com/read/162614/5517927
c array-size1.c
// PR c++/38
// Origin: Wolfgang Bangerth
// { dg-do compile }
template struct A
{
static const int n = 1;
typedef double X[n];
A (const X&);
};
template
www.eeworm.com/read/162614/5518084
c array5_x.c
extern "C" void abort (void);
extern int count;
extern int num;
struct A
{
A();
~A();
};
struct Array
{
A array[2][2][2];
};
void
array5_x ()
{
for (num = 0; num
www.eeworm.com/read/162614/5518087
c array5_y.c
int count;
int num;
struct A
{
A();
~A();
};
A::A()
{
if (count == num)
throw "";
count++;
}
A::~A()
{
count--;
}
www.eeworm.com/read/162614/5518096
c array5_main.c
// Copyright (C) 2002 Free Software Foundation
// Contributed by Kriang Lerdsuwanakij
// Split into pieces for binary compatibility testing October 2002
// Incorrect
www.eeworm.com/read/162614/5518776
c large-size-array.c
/* { dg-do compile } */
#include
#ifdef __LP64__
#define DIM UINT_MAX>>1
#else
#define DIM USHRT_MAX>>1
#endif
int
sub (int *a)
{
return a[0];
}
int
main (void)
{
int a[DIM][DIM]; /
www.eeworm.com/read/162614/5519153
c array1-1.c
// { dg-do compile }
// { dg-options "-fabi-version=1" }
// Contributed by Nathan Sidwell 22 Dec 2003
// Origin: Roger Sayle
// PR c++/12774 Array dom
www.eeworm.com/read/162614/5519342
c array2-2.c
// { dg-do compile }
// { dg-options "-fabi-version=2" }
// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Dec 2003
// PR c++/13494.