代码搜索:unsigned
找到约 10,000 项符合「unsigned」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5528036
c 950122-1.c
int
foo (int i, unsigned short j)
{
return j *= i;
}
www.eeworm.com/read/162614/5528182
c 960514-1.c
struct s {
unsigned long long t[5];
};
void
f (struct s *d, unsigned long long *l)
{
int i;
for (i = 0; i < 5; i++)
d->t[i] += l[i];
}
www.eeworm.com/read/162614/5528287
c 940712-1.c
f ()
{
return (*(volatile unsigned int *)8000) / 3;
}
www.eeworm.com/read/162614/5528370
c 950816-1.c
f ()
{
unsigned char b[2];
float f;
b[0] = (unsigned char) f / 256;
return 0;
}
www.eeworm.com/read/162614/5528417
c 930503-1.c
f (const char *s, char *d, unsigned l)
{
if (0)
while (1);
else
while (--l >= 0)
*d++ = *s++;
}
www.eeworm.com/read/162614/5528463
c 930506-1.c
long long
f (a)
double a;
{
double b;
unsigned long long v;
b = a / 2.0;
v = (unsigned) b;
a -= (double) v;
return v;
}
www.eeworm.com/read/162614/5528471
c 930109-1.c
f(x)
unsigned x;
{
static short c;
return x>>c;
}
g(x)
unsigned x;
{
static char c;
return x>>c;
}
www.eeworm.com/read/162614/5528498
c 20050206-1.c
unsigned short foo (void)
{
unsigned short u[1] = { 1 };
u[0] = 0;
u[1] = 1;
u[2] = 2;
return u[0] + u[1] + u[2];
}
www.eeworm.com/read/162614/5528681
c 930602-1.c
typedef struct {
int f[8];
} T;
f (w, l, r)
T *w;
unsigned short l, r;
{
int i;
for (i = l; i < r; i++)
g (w->f[i]);
}