代码搜索:Digit

找到约 4,689 项符合「Digit」的源代码

代码结果 4,689
www.eeworm.com/read/352050/10585582

c shizhong.c

#include #define uchar unsigned char #define uint unsigned int uchar second,minute,hour; uchar i,counter; const uchar led_digit[11] = {0xc0,0xf9,0xa4,0xb0,0x99,0x92,
www.eeworm.com/read/463662/7177029

c ta.c

#include #define uchar unsigned char #define uint unsigned int uchar key_buffer; uchar key_long; uchar digit[8] = {1,2,3,4,5,6,7,8}; uint con = 0 ; int time = 0 ; int tt =
www.eeworm.com/read/442630/7648666

h lcd_hw.h

extern const unsigned int wt_display1[3][16][LCD_BP_CNT]; extern const unsigned int wt_display2[2][16][LCD_BP_CNT]; void wt_display_digit(const unsigned int data[16][LCD_BP_CNT],unsigned char digi
www.eeworm.com/read/100601/6267443

c identest.c

#include #include #include "mpi.h" #include "mpprime.h" #include #include #define MAX_PREC (4096 / MP_DIGIT_BIT) mp_err identity_test(void) { mp_size
www.eeworm.com/read/489729/6469195

c main.c

#include "71x_lib.h" #include "ledkey.h" #include "lcdlib.h" #include extern void OSLedCodeDisp(u8 digit,u8 num); extern void OSEnableLedKey(void); #define UART0_Rx_Pin (0x0001
www.eeworm.com/read/214520/15097608

l scan.l

%{ #include #include "y.tab.h" void count(); void prword(); int stack[200]; int size = 0; %} digit [0-9]+ float [+-]?[0-9]*\.[0-9]+([eE][+-]?[0-9]+)? id [a-zA-Z][a-zA-Z0-9]* math >|>=|==
www.eeworm.com/read/316872/3602426

h rtc.h

#ifndef _ASM_RTC_H #define _ASM_RTC_H extern void (*board_time_init)(void); extern void (*rtc_sh_get_time)(struct timespec *); extern int (*rtc_sh_set_time)(const time_t); #define RTC_CAP_4_DIGIT_YE
www.eeworm.com/read/366702/2876304

f90 fmt_float.f90

! { dg-do run } ! PR33225 Missing last digit in some formatted output (on 32bit targets) ! related to per kind write_float patch ! Test case from PR. real x x = 1.0 print '(3E20.2e2)', x, x/10.0, x/10
www.eeworm.com/read/135751/13903014

cpp shiyan2-a.cpp

#include #include #include #include #include //定义一棵二叉树 char number[50]; int n,bit; enum NodeType{based_num,num,basechar,digit}; class BinNode
www.eeworm.com/read/134095/14008542

cpp scan.cpp

#include "globals.h" //分析器的词法扫描部分 #include "scan.h" void Do_Tag(char * strSource); //识别标识符的中间状态 void Do_Digit(char * StrSource); //识别数字中间状态 void Do_EndOfT