代码搜索:Struct
找到约 10,000 项符合「Struct」的源代码
代码结果 10,000
www.eeworm.com/read/434785/7801739
h os_struct.h
#ifndef OS_OS_STRUCT
#define OS_OS_STRUCT
struct cpu_information{
int thread_id;
struct{
int thread_id,process_id;
struct thread_physical_block physical_block;
}last;
};
#define
www.eeworm.com/read/434785/7801741
h kernel_struct.h
#ifndef OS_KERNEL_STRUCT
#define OS_KERNEL_STRUCT
struct semaphore{
int value;
int process;
int thread_id,thread_ring;
int front,back;
struct capability capability;
int heap,v_value;
www.eeworm.com/read/330197/7810084
bak struct.h.bak
/*
************************************************************************
*
*
********************************************************************
*/
//#include "include\macro.h"
/****
www.eeworm.com/read/330197/7810151
bak struct.h.bak
/*
************************************************************************
*
*
********************************************************************
*/
//#include "include\macro.h"
/****
www.eeworm.com/read/434551/7860408
h struct-dump.h
enum desc_type {
UINT64,
SINT64,
UINT32,
SINT32,
UINT16,
SINT16,
UINT8,
SINT8,
FOURCC,
STRING,
PTR,
ENUM16,
ENUM32,
STRUCT,
UNION,
BITS16,
BITS32,
BITS64,
VER,
PADDING,
};
struct
www.eeworm.com/read/434551/7860429
c struct-dump.c
#include
#include
#include
#include
#include
#include
#include "struct-dump.h"
/* -----------------------------------------------
www.eeworm.com/read/299293/7867940
vhd timing_struct.vhd
LIBRARY ieee;
USE ieee.std_logic_1164.all;
USE ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
ENTITY Timing IS
port (
--Input
rst_n_i : in std_logic;
clk_lc65_i
www.eeworm.com/read/296805/8076542
htm struct2.htm
/* struct2.c: Illustrates nested structures */
#include <stdio.h>
#include <string.h>
struct Hitter {
char last[16];
char first[11];
int ho
www.eeworm.com/read/296805/8076567
c struct2.c
/* struct2.c: Illustrates nested structures */
#include
#include
struct Hitter {
char last[16];
char first[11];
int home_runs;
int year;
};
struct Hal