代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/366702/2867034
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/366702/2867043
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/366702/2868117
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/2868656
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/366702/2868913
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.
www.eeworm.com/read/366702/2868945
c array2-1.c
// { dg-do compile }
// { dg-options "-fabi-version=1" }
// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Dec 2003
// PR c++/13494.
www.eeworm.com/read/366702/2869015
c array1-2.c
// { dg-do compile }
// { dg-options "-fabi-version=2" }
// Contributed by Nathan Sidwell 22 Dec 2003
// Origin: Roger Sayle
// PR c++/12774 Array dom
www.eeworm.com/read/366702/2872541
adb bit_packed_array.adb
-- PR ada/33788
-- Origin: Oliver Kellogg
-- { dg-do compile }
package body Bit_Packed_Array is
procedure Generate_Callforward is
Compiler_Crash : String :=
www.eeworm.com/read/366702/2872548
adb self_aggregate_with_array.adb
-- { dg-do run }
procedure self_aggregate_with_array is
type Value_Bounds is array (1 .. 2) of Natural;
type Sensor is record
Value : Natural;
Bounds : Value_Bounds;
end recor
www.eeworm.com/read/366702/2872707
ads bit_packed_array.ads
with Interfaces;
package Bit_Packed_Array is
type laser_illuminator_code_group_t is (zero, one);
pragma Convention (C, laser_illuminator_code_group_t);
subtype lic_array_index_t is Interfa