代码搜索:Struct

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

代码结果 10,000
www.eeworm.com/read/177375/9457770

h uart_struct.h

// UART Registers typedef volatile struct { int np_uartrxdata; // Read-only, 8-bit int np_uarttxdata; // Write-only, 8-bit int np_uartstatus; // Read-only, 8-bit int np_uar
www.eeworm.com/read/176826/9483025

hh gtl_struct.hh

#ifndef GTL_STRUCT_HH #define GTL_STRUCT_HH typedef struct { double PosX; /* [00] */ double PosY; /* [08] */ double PosZ;
www.eeworm.com/read/371706/9540880

m count_struct.m

function [count]=count_struct; %COUNT_STRUCT: delimiters of header words in the trace header % % Author(s): M.D.Sacchi (sacchi@phys.ualberta.ca) % Copyright 1998-2003 SeismicLab % Revision: 1.2 Da
www.eeworm.com/read/371706/9540883

m segy_struct.m

function [segy] = segy_struct; %SEGY_STRUCT: header words for trace header % % Author(s): M.D.Sacchi (sacchi@phys.ualberta.ca) % Copyright 1998-2003 SeismicLab % Revision: 1.2 Date: Dec/2002 % %
www.eeworm.com/read/370818/9583017

txt readme_struct.txt

Readme for the SVM-light structure learning API ----------------------------------------------- Thorsten Joachims, 03.07.2004 The API allows to implement different versions of the learning algorithm
www.eeworm.com/read/168597/9906398

h dma_struct.h

// ---------------------------------------------- // DMA Peripheral // DMA Registers typedef volatile struct { int np_dmastatus; // status register int np_dmareadaddress; // read addres
www.eeworm.com/read/168597/9906400

s dma_struct.s

; ---------------------------------------------- ; DMA Peripheral ; DMA Registers .equ np_dmastatus, 0 ; status register .equ np_dmareadaddress, 1 ; read address .equ np_d
www.eeworm.com/read/167540/9964173

literals c-struct.literals

# this is the file of string literals literal0: .string "st.t = " len0 = . - literal0
www.eeworm.com/read/167540/9964188

c- c-struct.c-

/* * * test structure * * * */ struct node{ int a[5]; int t; } ; struct node st; int main() { struct node n[50]; st.a[1]=100; n[1].a[2]=10; st.t = 10 * n[1].a[2] + 9
www.eeworm.com/read/167540/9964226

s c-struct.s

# start of the file .include "defines.h" # system call numbers .include "c-struct.literals" # include the string literal file .global _start .bss .align 4 _data: .skip 24 # global variables