代码搜索:Byte
找到约 10,000 项符合「Byte」的源代码
代码结果 10,000
www.eeworm.com/read/321827/13397182
asm strchr.asm
page ,132
title strchr - search string for given character
;***
;strchr.asm - search a string for a given character
;
; Copyright (c) 1985-1997, Microsoft Corporation.
www.eeworm.com/read/321827/13397185
asm strlen.asm
page ,132
title strlen - return the length of a null-terminated string
;***
;strlen.asm - contains strlen() routine
;
; Copyright (c) 1985-1997, Microsoft Corporation.
www.eeworm.com/read/321681/13400937
s ccvt_mmx.s
/* CCVT: ColourConVerT: simple library for converting colourspaces
Copyright (C) 2002 Nemosoft Unv.
This program is free software; you can redistribute it and/or modify
it under the term
www.eeworm.com/read/321242/13410355
h fx2regs.h
//-----------------------------------------------------------------------------
// File: FX2regs.h
// Contents: EZ-USB FX2 register declarations and bit mask definitions.
//
// $Archive
www.eeworm.com/read/321127/13411834
c romserch.c
#include "DS18B20.h"
//Rev CRC8 register
//需要在使用前由调用它的程序将其清零
unsigned char revCRC8;
//temp memory of 18B20 ROM data, using for search command
//the last two byte contains the search infomat
www.eeworm.com/read/321111/13412132
cpp pointtrans.cpp
/**************************************************************************
* 文件名:PointTrans.cpp
*
* 图像点运算API函数库:
*
* LinerTrans() - 图像线性变换
* WindowTrans() - 图像窗口变换
* GrayStretch
www.eeworm.com/read/320912/13416073
txt 模拟uart设计.txt
3.1、数据定义
定义模拟串口程序所必须的一些资源,如I/O引脚、波特率、数据缓冲区等。
#define Fosc 22118400 //晶振频率
#define Baud 38400 //波特率
#define BaudT (Fosc/Baud/3/12)
#define BufLong 16 //FIFO长度
sbit RxD1=P1^7;
www.eeworm.com/read/320276/13429537
cpp ximapcx.cpp
/*
* File: ximapcx.cpp
* Purpose: Platform Independent PCX Image Class Loader and Writer
* 05/Jan/2002 Davide Pizzolato - www.xdp.it
* CxImage version 5.99c 17/Oct/2004
*
* based on ppmtop
www.eeworm.com/read/320276/13429563
cpp ximapal.cpp
// xImaPal.cpp : Palette and Pixel functions
/* 07/08/2001 v1.00 - Davide Pizzolato - www.xdp.it
* CxImage version 5.99c 17/Oct/2004
*/
#include "ximage.h"
/////////////////////////////////
www.eeworm.com/read/320008/13436304
cpp aes_encrypt.cpp
#include "aes.h"
Aes::Aes(int keySize, char* keyBytes)
{
SetNbNkNr(keySize);
key = new char[Nk * 4]; // 16, 24, 32 bytes
//keyBytes.CopyTo( key, 0);
BuildSbox();
BuildInvSbox();
Bui