代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/318888/13467695
asm fir2macs.asm
;
; fir2macs.asm - Dual-MAC Block FIR filter
;
; prototype: unsigned int fir2macs(int *, unsigned int, int *,
; unsigned int, int *, int *, unsigned int);
www.eeworm.com/read/318888/13467702
asm fir.asm
;
; fir.asm - Generic FIR filter
;
; prototype: unsigned int fir(int *, unsigned int, int *,
; unsigned int, int *, int *, unsigned int);
;
; Ent
www.eeworm.com/read/318878/13468394
c huffman.c
/*//////////////////////////////// "huffman.c" /////////////////////////////
//
// INTEL CORPORATION PROPRIETARY INFORMATION
// This software is supplied under the terms of a l
www.eeworm.com/read/318852/13470309
pas kglibimport.pas
unit KGlibImport;
{$IFDEF LINUX}{$INCLUDE ../FLXCOMPILER.INC}{$ELSE}{$INCLUDE ..\FLXCOMPILER.INC}{$ENDIF}
{$A8}{$Z4}
interface
uses Libc;
const
libgobject='libgobject-2.0.so.0';
libglib='li
www.eeworm.com/read/318852/13470311
inc tisstimp.inc
//************************************************************************************//
// File created automatically by GenerateRecords.xls //
// Modified by hand
www.eeworm.com/read/318852/13470411
pas kgsfimport.pas
unit KGsfImport;
{$IFDEF LINUX}{$INCLUDE ../FLXCOMPILER.INC}{$ELSE}{$INCLUDE ..\FLXCOMPILER.INC}{$ENDIF}
{$A8}{$Z4}
interface
uses Libc, KGlibImport;
const
libgsf = 'libgsf-1.so.1';
libxm
www.eeworm.com/read/318488/13477540
m setpointer.m
function setpointer(fig, ptr)
% Set the pointer on the current figure to PTR
% has several specialized SOM (SliceOMatic) pointers
switch ptr
case 'SOM left'
pd = [ nan nan nan nan 1 nan
www.eeworm.com/read/317396/13505006
pas memorymanager.pas
unit MemoryManager;
interface
procedure SnapCurrMemStatToFile(Filename: string);
implementation
uses
Windows, SysUtils, TypInfo;
const
MaxCount = 5000000;//High(DWord);
var
www.eeworm.com/read/317396/13505103
pas checkmem.pas
unit CheckMem; file://Add it to the first line of project uses
interface
procedure SnapCurrMemStatToFile(Filename: string);
implementation
uses
Windows, SysUtils, TypInfo;
const
M
www.eeworm.com/read/317023/13512172
java userlinklist.java
/**
* 用户链表
*/
public class UserLinkList {
Node root;
Node pointer;
int count;
/**
* 构造用户链表
*/
public UserLinkList(){
root = new Node();
root.next = null;
pointer = nul