代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/340665/3272955
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/340665/3272958
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/340665/3272967
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/340665/3284067
cc slice_array_assignment.cc
// 20010613 gdr
// Copyright (C) 2001, 2002 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify
www.eeworm.com/read/339586/3296763
cxx vector2array.cxx
/*
* Copyright (C) 2001-2003 Peter J Jones (pjones@pmade.org)
* All Rights Reserved
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided
www.eeworm.com/read/336825/3347191
svn-base array.h.svn-base
#ifndef ARRAY_INCLUDED
#define ARRAY_INCLUDED
#define T Array_T
typedef struct T *T;
extern T Array_new (int length, int size);
extern void Array_free(T *array);
extern int Array_length(T array);
e
www.eeworm.com/read/336825/3347251
svn-base array.c.svn-base
#include
#include
#include "assert.h"
#include "array.h"
#include "arrayrep.h"
#include "mem.h"
#define T Array_T
T Array_new(int length, int size) {
T array;
NEW(array);
if (
www.eeworm.com/read/336825/3347420
svn-base array.h.svn-base
/* $Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $ */
#ifndef ARRAY_INCLUDED
#define ARRAY_INCLUDED
#define T Array_T
typedef struct T *T;
extern T Array_new (int length,
www.eeworm.com/read/336825/3347451
svn-base array.c.svn-base
static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/array.doc,v 1.11 1997/10/29 22:05:21 drh Exp $";
#include
#include
#include "assert.h"
#include "array.h"
#include "arrayrep.h"
www.eeworm.com/read/336825/3347570
svn-base array.h.svn-base
/* $RCSfile: RCS/array.doc,v $ $Revision: 1.9 $ */
#ifndef ARRAY_INCLUDED
#define ARRAY_INCLUDED
#define T Array_T
typedef struct T *T;
extern T Array_new (int length, int size);
extern void Array_