代码搜索:uint

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

代码结果 10,000
www.eeworm.com/read/381603/9083920

bak lcd.h.bak

#define CONSOLE_ENGLISH 0x00 #define CONSOLE_CHINESE 0x01 extern uint8 x_pos,y_pos;//当前列号0~15,行号0~7 extern uint8 inversed_save;//记录已经反显的行号,0~7,偶数行有效,如2、3行为一行文字,反显的话,bit2=1,bit3无意义 extern uint8 men
www.eeworm.com/read/381430/9093207

h common.h

#ifndef _COMMON_H_ #define _COMMON_H_ #include #define MAX_LINE_LEN 32 typedef unsigned char uint8; typedef unsigned short uint16; typedef unsigned char uchar; typedef unsigne
www.eeworm.com/read/381429/9093234

h common.h

#ifndef _COMMON_H_ #define _COMMON_H_ #define MAX_LINE_LEN 32 typedef unsigned char uint8; typedef unsigned char uchar; typedef unsigned int uint; typedef unsigned long ulong; typedef unsi
www.eeworm.com/read/381352/9097072

h ch375hf5.h

/* 2004.06.05, 2004.09.20, 2004.10.22, 2004.11.20, 2004.12.12, 2004.12.28, 2005.01.04, 2005.01.12, 2005.01.26, 2005.03.01, 2005.07.29, 2005.12.28, 2006.08.02 ****************************************
www.eeworm.com/read/381042/9114157

h struct1107.h

#ifndef _STRUCT1107_H_ #define _STRUCT1107_H_ #include "ExTigReg.h" //typedef unsigned char uint8; //typedef unsigned int uint16; //typedef unsigned long uint32; //typedef signed char int8; /
www.eeworm.com/read/381042/9114172

h zjpro.h

typedef unsigned char uint8; typedef unsigned int uint16; typedef unsigned long uint32; typedef signed char int8; typedef signed int int16; typedef signed long int32; extern struct RTCTime {
www.eeworm.com/read/381042/9114199

h defvar.h

/************************************************************************************* 文件类型: 文件作用:程序变量定义,用户可以自己修改和定义 修改权限: 文件相关: 创 建 人:GeminiKQ 创建日期:2006.12.20 当前版本:Ver0.1 版本信息
www.eeworm.com/read/184184/9118551

h usbhost.h

/* * Start of Zoran Standard Header * Copyright (c) 2003 Zoran Corporation * * * All rights reserved. Proprietary and confidential. * * DESCRIPTION for usbhost.h * Include
www.eeworm.com/read/183948/9129588

c test2.c

#define uint8 unsigned char #define uint32 unsigned int extern uint32 Add(uint32 x, uint32 y); uint32 sum; // 调用汇编程序Add实现加法运算 void Main(void) { sum = Add(555, 168); whil
www.eeworm.com/read/183948/9129595

c test1.c

#define uint8 unsigned char #define uint32 unsigned int #define N 100 uint32 sum; // 使用加法运算来计算1+2+3+...+(N-1)+N的值。(N>0) void Main(void) { uint32 i; sum = 0; for(i=0;