代码搜索:Struct

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

代码结果 10,000
www.eeworm.com/read/148721/5709289

sbk struct.sbk

.486 .model flat extrn __fltused:near extrn __ftol:near public _addpoint _TEXT segment _addpoint: push ebx push esi push edi push ebp mov ebp,esp mov edi,dword ptr (32)[ebp] add dword ptr
www.eeworm.com/read/148721/5709337

sbk struct.sbk

.globl addpoint .text .align 16 .type addpoint,@function addpoint: pushl %ebp pushl %ebx pushl %esi pushl %edi movl %esp,%ebp movl 32(%ebp),%edi addl %edi,24(%ebp) movl 36(%ebp),%edi addl
www.eeworm.com/read/148721/5709377

c struct.c

typedef struct point { int x,y; } point; typedef struct rect { point pt1, pt2; } rect; point addpoint(point p1, point p2) { /* add two points */ p1.x += p2.x; p1.y += p2.y; return p1; }
www.eeworm.com/read/148721/5709472

sbk struct.sbk

.globl addpoint .text .text .ent addpoint addpoint: ldgp $gp,0($27) lda $sp,-64($sp) .frame $sp,64,$26,48 stq $17,24($sp) stq $18,32($sp) .prologue 1 ldl $27,-40+64($sp) ldl $25,-32+64($sp
www.eeworm.com/read/148721/5709564

sbk struct.sbk

.global addpoint .section ".text" .align 4 addpoint: save %sp,-96,%sp ld [%i0],%i5 ld [%i1],%i4 add %i5,%i4,%i5 st %i5,[%i0] add %i0,4,%i5 ld [%i5],%i4 ld [%i1+4],%i3 add %i4,%i3,%i4 st %
www.eeworm.com/read/147331/5730581

c struct.c

/* Oki bug report, no number. Here's the output the error generates. gcc -c -g -ansi oki008.c -o oki008.o -msoft-float oki008.c: In function `Proc0': oki008.c:50: internal error-
www.eeworm.com/read/144216/5751947

pm struct.pm

package Class::Struct; ## See POD after __END__ use 5.005_64; use strict; use warnings::register; our(@ISA, @EXPORT, $VERSION); use Carp; require Exporter; @ISA = qw(Exporter); @EXPORT = qw(struc
www.eeworm.com/read/137691/5820655

java struct.java

/* * Copyright 1999 Finn Bock. * * This program contains material copyrighted by: * Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, * The Netherlands. */ package org.python.mo
www.eeworm.com/read/136989/5832066

idl struct.idl

// // struct.idl,v 1.1 2003/11/18 14:55:10 smcqueen Exp // module StructTest { struct MyStruct { octet MyOctet; unsigned long MyLong; }; typedef MyStruct MyStructAlias;
www.eeworm.com/read/136989/5833081

idl struct.idl

// struct.idl,v 1.2 1998/05/13 14:27:33 levine Exp struct bar { long b1; long b2; string b3; }; struct bar2 { long b3; bar b4; }; struct bar3 { long b1; long b2;