代码搜索:uint
找到约 10,000 项符合「uint」的源代码
代码结果 10,000
www.eeworm.com/read/121395/14757711
h2 uint64.h2
#ifndef UINT64_H
#define UINT64_H
/* sysdep: +ulong64 */
typedef unsigned long uint64;
#endif
www.eeworm.com/read/217145/14977036
c uint16_pack.c
#include "uint16.h"
void uint16_pack(char s[2],uint16 u)
{
s[0] = u & 255;
s[1] = u >> 8;
}
void uint16_pack_big(char s[2],uint16 u)
{
s[1] = u & 255;
s[0] = u >> 8;
}
www.eeworm.com/read/217145/14977045
c uint16_unpack.c
#include "uint16.h"
void uint16_unpack(const char s[2],uint16 *u)
{
uint16 result;
result = (unsigned char) s[1];
result
www.eeworm.com/read/217145/14977075
h1 uint32.h1
#ifndef UINT32_H
#define UINT32_H
typedef unsigned int uint32;
extern void uint32_pack(char *,uint32);
extern void uint32_pack_big(char *,uint32);
extern void uint32_unpack(const char *,uint32 *);
e
www.eeworm.com/read/217145/14977096
c uint32_pack.c
#include "uint32.h"
void uint32_pack(char s[4],uint32 u)
{
s[0] = u & 255;
u >>= 8;
s[1] = u & 255;
u >>= 8;
s[2] = u & 255;
s[3] = u >> 8;
}
void uint32_pack_big(char s[4],uint32 u)
{
www.eeworm.com/read/217145/14977100
h2 uint32.h2
#ifndef UINT32_H
#define UINT32_H
typedef unsigned long uint32;
extern void uint32_pack(char *,uint32);
extern void uint32_pack_big(char *,uint32);
extern void uint32_unpack(const char *,uint32 *);
www.eeworm.com/read/217145/14977114
c uint32_unpack.c
#include "uint32.h"
void uint32_unpack(const char s[4],uint32 *u)
{
uint32 result;
result = (unsigned char) s[3];
result
www.eeworm.com/read/212047/15166759
h gsl_block_uint.h
/* block/gsl_block_uint.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the term
www.eeworm.com/read/212047/15167453
h gsl_sort_uint.h
/* sort/gsl_sort_uint.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms o
www.eeworm.com/read/212047/15167484
h gsl_permute_uint.h
/* permutation/gsl_permute_uint.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the