代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/366702/2876373
f array_constructor_23.f
! { dg-do run }
! { dg-require-effective-target fortran_large_real }
! Tests the fix for PR35944/6/7, in which the variable array constructors below
! were incorrectly translated and wrong code was pr
www.eeworm.com/read/366702/2876393
f90 array_1.f90
! { dg-do run }
! PR 15553 : the array used to be filled with garbage
! this problem disappeared between 2004-05-20 and 2004-09-15
program arrpack
implicit none
double precision x(10,10)
inte
www.eeworm.com/read/366702/2876994
f90 array_4.f90
! { dg-do compile }
! PR fortran/36824
!
! Dimension of tgclist was not recognized as having constant bounds
!
program test
implicit none
integer, dimension( 3 ), parameter :: tgc = (/5, 6, 7 /)
type
www.eeworm.com/read/366702/2877348
f90 array_3.f90
! { dg-do compile }
! PR31610 ICE with transfer, merge in gfc_conv_expr_descriptor
integer :: i(1) = 1
integer :: foo(3)
integer :: n(1)
foo(1) = 17
foo(2) = 55
foo(3) = 314
print *, i,
www.eeworm.com/read/366702/2877385
f90 array_2.f90
! { dg-do run }
! PR tree-optimization/30092
! This caused once an ICE due to internal tree changes
program test
implicit none
integer, parameter :: N = 30
real, dimension(N) :: rho, pre, cs
r
www.eeworm.com/read/366702/2881055
c array-quals-2.c
/* Test that pointers to arrays of differently qualified types aren't
permitted in conditional expressions, and that qualifiers aren't
lost in forming composite types. */
/* Origin: Joseph Myer
www.eeworm.com/read/366702/2881059
c array-init-2.c
/* Test array initializion by store_by_pieces. */
/* { dg-do run } */
/* { dg-options "-O2" } */
struct A { char c[10]; };
extern void abort (void);
void
__attribute__((noinline))
check (struct A *
www.eeworm.com/read/366702/2881196
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/366702/2882539
c array-quals-1.c
/* Test for various combinations of const, arrays and typedefs:
should never actually get const on the final array type, but
all should end up in a read-only section. PR c/12165. */
/* Origin:
www.eeworm.com/read/366702/2882682
c array-init-1.c
/* Test that both arrays are initialized by store_by_pieces. */
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-options "-O2 -mtune=i686" { target { { i?86-*-* x86_64-*-* } && ilp32 } } }