代码搜索:byte
找到约 10,000 项符合「byte」的源代码
代码结果 10,000
www.eeworm.com/read/304635/13790350
jpg fuse byte.jpg
www.eeworm.com/read/303425/13816430
h byte_order.h
#ifndef __BYTE_ORDER__
#define __BYTE_ORDER__
#define MY_BIG_ENDIAN 0
#define MY_LITTLE_ENDIAN 1
int TestByteOrder(void);
long int SwapFourBytes(long int dw);
#endif
www.eeworm.com/read/303425/13816455
c byte_order.c
/*
* Ray2mesh : software for geophysicists.
* Compute various scores attached to the mesh cells, based on geometric
information that rays bring when the traverse the cell.
*
* Copyright (C) 200
www.eeworm.com/read/302857/13826146
pas dgl_byte.pas
(*
* Copyright (c) 2004
* HouSisong@263.net
*
* This material is provided "as is", with absolutely no warranty expressed
* or implied. Any use is at your own risk.
*
* Permission to use
www.eeworm.com/read/300969/13875115
h byte_order.h
#define CHAR_UNSIGNED 0
#define MSB_AT_LOW_ADDRESS 0
#define MSW_AT_LOW_ADDRESS 0
#define FL_MSB_AT_LOW_ADDRESS 0
#define FL_MSW_AT_LOW_ADDRESS 0
#define FL_MSL_AT_LOW_ADDRESS 0
www.eeworm.com/read/300969/13875293
h byte_order.h
#define CHAR_UNSIGNED 0
#define MSB_AT_LOW_ADDRESS 0
#define MSW_AT_LOW_ADDRESS 0
#define FL_MSB_AT_LOW_ADDRESS 0
#define FL_MSW_AT_LOW_ADDRESS 0
#define FL_MSL_AT_LOW_ADDRESS 0
www.eeworm.com/read/238485/13882235
c byte_diff.c
#include "byte.h"
int byte_diff(s,n,t)
register char *s;
register unsigned int n;
register char *t;
{
for (;;) {
if (!n) return 0; if (*s != *t) break; ++s; ++t; --n;
if (!n) return 0; if (
www.eeworm.com/read/238485/13882633
c byte_copy.c
#include "byte.h"
void byte_copy(to,n,from)
register char *to;
register unsigned int n;
register char *from;
{
for (;;) {
if (!n) return; *to++ = *from++; --n;
if (!n) return; *to++ = *from
www.eeworm.com/read/238485/13882703
c byte_zero.c
#include "byte.h"
void byte_zero(s,n)
char *s;
register unsigned int n;
{
for (;;) {
if (!n) break; *s++ = 0; --n;
if (!n) break; *s++ = 0; --n;
if (!n) break; *s++ = 0; --n;
if (!n
www.eeworm.com/read/238485/13882930
c byte_rchr.c
#include "byte.h"
unsigned int byte_rchr(s,n,c)
char *s;
register unsigned int n;
int c;
{
register char ch;
register char *t;
register char *u;
ch = c;
t = s;
u = 0;
for (;;) {
if