代码搜索:uint
找到约 10,000 项符合「uint」的源代码
代码结果 10,000
www.eeworm.com/read/124283/14580596
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
www.eeworm.com/read/124283/14580794
h gsl_statistics_uint.h
/* statistics/gsl_statistics_uint.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under th
www.eeworm.com/read/124283/14581693
h gsl_vector_uint.h
/* vector/gsl_vector_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 te
www.eeworm.com/read/124283/14581826
h gsl_matrix_uint.h
/* matrix/gsl_matrix_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 te
www.eeworm.com/read/121395/14757569
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/121395/14757582
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/121395/14757602
h1 uint64.h1
#ifndef UINT64_H
#define UINT64_H
/* sysdep: -ulong64 */
typedef unsigned long long uint64;
#endif
www.eeworm.com/read/121395/14757635
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/121395/14757668
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/121395/14757693
c uint32_unpack.c
#include "uint32.h"
void uint32_unpack(const char s[4],uint32 *u)
{
uint32 result;
result = (unsigned char) s[3];
result