代码搜索:pointer

找到约 10,000 项符合「pointer」的源代码

代码结果 10,000
www.eeworm.com/read/308790/13691955

ls1 os_mbox.ls1

A51 MACRO ASSEMBLER OS_MBOX 05/17/2005 11:19:54 PAGE 1 MACRO ASSEMBLER A51 V7.10 OBJECT MODULE PLACED IN OS_MBOX.OBJ ASSEMBLER
www.eeworm.com/read/308442/13700980

c useaddr.c

#include void main(void) { int a = 1, b = 2; int *i_pointer; // Assign an address i_pointer = &a; // Change the value pointed to by i_pointer to 5 *i_point
www.eeworm.com/read/308442/13701130

c brk.c

#include #include void main(void) { char *ptr; printf("Starting heap available %u\n", coreleft()); ptr = malloc(1); // Get pointer to current break v
www.eeworm.com/read/308408/13701928

pas finaltest.pas

unit FinalTest; interface implementation var p : Pointer; initialization finalization GetMem(p, 1000); FreeMem(p, 1000); end.
www.eeworm.com/read/308406/13702329

pas rm_bzip2.pas

{*******************************************************} { } { BZIP2 Data Compression Interface Unit } {
www.eeworm.com/read/308301/13704732

pas checkmem.pas

unit CheckMem; interface procedure SnapCurrMemStatToFile(Filename: string); implementation uses Windows, SysUtils, TypInfo; const MaxCount = High(word)*10; var OldMemMgr: TMem
www.eeworm.com/read/308255/13705435

java userinfolist.java

package cstest; import java.io.Serializable; public class UserInfoList implements Serializable { Node root; //用户信息链表的跟 Node pointer; //用于操作链表的游标 int count;
www.eeworm.com/read/307891/13713337

asm fir.asm

; ; fir.asm - FIR filter ; ; prototype: extern void fir(int *,int *,int *,unsigned int) ; ; Entry: arg0: AR0 - (in) FIR filter input buffer pointer ;
www.eeworm.com/read/307775/13715124

txt 16位32位整型数开方.txt

. 16位 整型数开方 .include "8515def.inc" .def numlo = r16 .def numhi = r17 .def sqrt = r18 .def suber = r24 .def suberh = r25 ;
www.eeworm.com/read/307616/13719174

cpp ex9_10.cpp

// Ex9_10.cpp // Using an abstract class #include "Box.h" // For CBox and CContainer #include "Can.h" // For CCan (and CContainer) #include