代码搜索:conditional
找到约 2,177 项符合「conditional」的源代码
代码结果 2,177
www.eeworm.com/read/122684/14674892
cpp guess.cpp
//: C03:Guess.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Guess a number (demonstrates
www.eeworm.com/read/119473/14829597
asm pgm6_9.asm
; Conditional JMP Instructions, Part I
.386
option segment:use16
dseg segment para public 'data'
J sword ?
K sword ?
L sword ?
dseg ends
cseg segment para public 'code'
assume
www.eeworm.com/read/213330/15137071
h precomp.h
#pragma warning(disable:4214) // bit field types other than int
#pragma warning(disable:4201) // nameless struct/union
#pragma warning(disable:4115) // named type definition in parentheses
www.eeworm.com/read/210806/15192058
v mul2_1_4bits.v
//---------------------------------------------------
//4-bit 2 to 1 multiplexer using conditional operator
//filename : mul2_1_4bits.v
//---------------------------------------------------
module
www.eeworm.com/read/209853/15212735
cpp guess.cpp
//: C03:Guess.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Guess a number (demonstrates "whil
www.eeworm.com/read/162614/5525101
ada c97203c.ada
-- C97203C.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5525158
ada c97204b.ada
-- C97204B.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5528420
c 20020103-1.c
/* This testcase failed on Alpha at -O2 when simplifying conditional
expressions. */
int foo (void);
struct A
{
int a, b, c, d;
};
void bar (struct A *x)
{
int e, f;
e = foo ();
e = e
www.eeworm.com/read/162614/5528460
c 20011219-2.c
/* This testcase failed on Alpha at -O2 when simplifying conditional
expressions. */
struct S {
unsigned long a;
double b, c;
};
extern double bar (double, double);
int
foo (unsigned long x
www.eeworm.com/read/162614/5529031
c array-quals-2.c
/* Test that pointers to arrays of differently qualified types aren't
permitted in conditional expressions, and that qualifiers aren't
lost in forming composite types. */
/* Origin: Joseph Myer