代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/195825/5107312
sbk array.sbk
.486
.model flat
extrn __fltused:near
extrn __ftol:near
public _main
_TEXT segment
_main:
push ebx
push esi
push edi
push ebp
mov ebp,esp
sub esp,60
mov dword ptr (-8)[ebp],0
L2:
mov dw
www.eeworm.com/read/195825/5107360
sbk array.sbk
.globl main
.text
.align 16
.type main,@function
main:
pushl %ebp
pushl %ebx
pushl %esi
pushl %edi
movl %esp,%ebp
subl $60,%esp
movl $0,-8(%ebp)
.LC2:
movl $0,-4(%ebp)
.LC6:
movl -4(%eb
www.eeworm.com/read/195825/5107456
sbk array.sbk
.globl main
.text
.text
.ent main
main:
ldgp $gp,0($27)
lda $sp,-144($sp)
.mask 0x4007000,-120
.frame $sp,144,$26,48
stq $12,0($sp)
stq $13,8($sp)
stq $14,16($sp)
stq $26,24($sp)
.prologu
www.eeworm.com/read/195825/5107504
sbk array.sbk
.global main
.section ".text"
.align 4
main:
save %sp,-144,%sp
mov %g0,%i4
.L2:
mov %g0,%i5
.L6:
sll %i5,2,%i2
sll %i4,4,%i1
set x,%i0
add %i1,%i0,%i1
smul %i4,1000,%i0
add %i0,%i5,%i0
www.eeworm.com/read/195013/5122208
c array.c
/*
* linux/fs/proc/array.c
*
* Copyright (C) 1992 by Linus Torvalds
* based on ideas by Darren Senn
*
* Fixes:
* Michael. K. Johnson: stat,statm extensions.
*
www.eeworm.com/read/194563/5127903
tex array.tex
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Name: array.tex
%% Purpose: wxArray
%% Author: wxWidgets Team
%% Modified by:
%% Created:
%% RCS-ID:
www.eeworm.com/read/193422/5143717
cc array.cc
#include
using namespace std;
int main(int argc,char* argv[]){
int len;
cout > len;
double *p = new double[len];
if(p==NULL){
cout
www.eeworm.com/read/193422/5143738
cc array.cc
#include
using namespace std;
class Array{
int* p;//the start address of variable group
int num;//the number of elements
public:
Array( int len );//allocate space
~Array();//release sp
www.eeworm.com/read/193422/5143774
cc array.cc
#include
using namespace std;
class Array{
int* p;//the start address of variable group
int num;//the number of elements
public:
Array( int len );//allocate space
~Array();//release sp