代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/397076/8069795
c os51c.c
/*
*********************************************************************************************************
* uC/OS
*
www.eeworm.com/read/397009/8072510
pas call.pas
{******************************************************************************}
{ 编码比较混乱,不符合规则,如果伤到你眼睛,还请见谅 ^_^ }
{ -----DeepBlue 12/11/2008
www.eeworm.com/read/397009/8072513
~pas call.~pas
{******************************************************************************}
{ 编码比较混乱,不符合规则,如果伤到你眼睛,还请见谅 ^_^ }
{ -----DeepBlue 12/11/2008
www.eeworm.com/read/296615/8086922
sa dotp4clasmfunc.sa
;Dotp4clasmfunc.sa Linear assembly function to multiply two arrays
.ref _dotp4clasmfunc ;ASM func called from C
_dotp4clasmfunc: .cproc ap,bp,count ;start section linear asm
www.eeworm.com/read/396732/8092600
c yabasic.c
/*
YABASIC --- a tiny integrated Basic Compiler/Interpreter
written by Marc-Oliver Ihm 1995-99.
e-mail: ihm@kph.uni-mainz.de
Current Version:
*/
#define BASIC_VERSION "2.45"
/
www.eeworm.com/read/196305/8100376
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/196297/8101422
pas sysinit.pas
unit SysInit;
interface
var TlsIndex,TlsLast, hInstance: LongWord;
PtrToNil, _GetTLS:Pointer;
implementation
end.
www.eeworm.com/read/196297/8101446
pas system.pas
unit System;
interface
type
TGUID=record
D1: LongWord;
D2, D3: Word;
D4: array [0..7] of Byte;
end;
TInitContext = Integer; //未用
HResult = Integer;
THandle = Cardinal;
DWORD
www.eeworm.com/read/396475/8105734
pas openjpeg.pas
unit OpenJpeg;
{ Partial Delphi interface to the OpenJpeg JPEG 2000 library.
(See www.openjpeg.org).
Links in the OpenJpeg object files. }
interface
{$MINENUMSIZE 4}
{$ALIGN ON}
uses
www.eeworm.com/read/396251/8118244
java userlinklist.java
/**
* 用户链表
*/
public class UserLinkList {
Node root;
Node pointer;
int count;
/**
* 构造用户链表
*/
public UserLinkList(){
root = new Node();
root.next = null;
pointer = nul