代码搜索:Storage
找到约 10,000 项符合「Storage」的源代码
代码结果 10,000
www.eeworm.com/read/127781/5998101
h megaracdebug.h
/****************************************************************************
*
* MegaRacDebug.h
*
****************************************************************************/
#ifndef MEGARAC_D
www.eeworm.com/read/127781/5998252
depend .depend
datafab.o: datafab.c \
/usr/src/linux-2.4.20-8/drivers/usb/storage/transport.h \
/usr/src/linux-2.4.20-8/drivers/usb/storage/protocol.h \
/usr/src/linux-2.4.20-8/drivers/usb/storage/usb.h \
www.eeworm.com/read/127739/6001534
c asn1c_misc.c
#include "asn1c_internal.h"
#include "asn1c_misc.h"
#include
/*
* Checks that the given string is not a reserved C/C++ keyword.
* ISO/IEC 9899:1999 (C99), A.1.2
*/
static char
www.eeworm.com/read/125819/6021007
c increment.c
/** Simple test for increment
type: signed char, int, long
storage: static,
attr: volatile
*/
#include
static void
testIncrement(void)
{
{attr} {storage} {type} i;
i
www.eeworm.com/read/125819/6021010
c bug-469671.c
/* bug 469671.c
storage: static,
*/
#include
void
testMul(void)
{
{storage} volatile int a, b;
a = 5;
b = a*2;
ASSERT(b == 10);
a = -33;
b = a*2;
ASSERT(b == -66);
}
www.eeworm.com/read/125819/6021035
c muldiv.c
/** Simple test for the mul/div/mod operations.
type: int, char, short, long
storage: static,
attr: volatile,
*/
#include
void
testUnsignedModDiv(void)
{
{attr} {storage}
www.eeworm.com/read/125819/6021062
c shifts.c
/** Tests covering the shift operators.
sign: signed, unsigned
type: char, int, long
storage: static,
attr: volatile
vals: 3
pending - 1792, 851968, 1560281088, -3, -1792,
www.eeworm.com/read/125819/6021070
c compare.c
/** Test the comparison operators.
type: char, int, long
storage: static,
attr: volatile
*/
#include
static void
testCmpAroundZero(void)
{
{attr} {storage} {type} i;
www.eeworm.com/read/125819/6021076
c uminus.c
/* Test unary minus
lefttype: int, char, short, long
resulttype: int, char, short, long
storage: static,
attr: volatile,
*/
#include
void
testUMinus(void)
{
{storage}