代码搜索:fields
找到约 10,000 项符合「fields」的源代码
代码结果 10,000
www.eeworm.com/read/395929/2430458
c fields.c
struct foo {
int a;
char b;
int x : 12, y : 4, : 0, : 4, z : 3;
char c;
} x = { 1, 2, 3, 4, 5, 6 };
int i = 16;
struct baz { unsigned int a:2, b:4, c:32;} y = { 7, 8, 9};
main()
{
printf("x = %d
www.eeworm.com/read/395929/2430784
sbk fields.sbk
.sdata
.globl x
.align 2
x:
.long 0x1
.byte 0x2
.space 3
.byte 0x3
.byte 0x40
.space 2
.byte 0x50
.byte 0x6
.space 2
.globl i
.align 2
i:
.long 0x10
.globl y
.align 2
y:
.byte 0x23
.space 3
.byte 0x9
www.eeworm.com/read/395929/2430925
sbk fields.sbk
.section ".data"
.global x
.type x,#object
.size x,16
.align 4
x:
.word 0x1
.byte 0x2
.skip 3
.byte 0x0
.byte 0x34
.skip 2
.byte 0xa
.byte 0x6
.skip 2
.global i
.type i,#object
.size i,4
.align 4
i:
.
www.eeworm.com/read/394446/2456951
java fields.java
import com.jacob.com.*;
public class Fields extends Dispatch
{
/**
* This constructor is used instead of a case operation to
* turn a Dispatch object into a wider object - it must exist
www.eeworm.com/read/392431/2497230
h fields.h
#if !defined(AFX_FIELDS_H__ED5B9E1F_3202_4DD9_90E5_41E337F492A1__INCLUDED_)
#define AFX_FIELDS_H__ED5B9E1F_3202_4DD9_90E5_41E337F492A1__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_
www.eeworm.com/read/392431/2497259
cpp fields.cpp
// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
// NOTE: Do not modify the contents of this file. If this class is regenerated by
// Microsoft Visual C++, your m
www.eeworm.com/read/391820/2516712
h fields.h
#if !defined(AFX_FIELDS_H__D530DED7_A987_44D1_95B4_8E0FEF09CC69__INCLUDED_)
#define AFX_FIELDS_H__D530DED7_A987_44D1_95B4_8E0FEF09CC69__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_
www.eeworm.com/read/391820/2516726
cpp fields.cpp
// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
// NOTE: Do not modify the contents of this file. If this class is regenerated by
// Microsoft Visual C++, your m
www.eeworm.com/read/384581/2598657
sbk fields.sbk
.set reorder
.globl x
.data
.align 2
x:
.word 0x1
.byte 0x2
.space 3
.byte 0x0
.byte 0x34
.space 2
.byte 0xa
.byte 0x6
.space 2
.globl i
.sdata
.align 2
i:
.word 0x10
.globl y
.sda
www.eeworm.com/read/384581/2598705
sbk fields.sbk
.486
.model flat
extrn __fltused:near
extrn __ftol:near
_DATA segment
public _x
align 4
_x label byte
dd 1
db 2
db 3 dup (0)
db 03H
db 040H
db 2 dup (0)
db 050H
db 6
db 2 dup (0)
publ