Home
last modified time | relevance | path

Searched refs:Bool (Results 1 – 25 of 98) sorted by relevance

1234

/freebsd/contrib/googletest/googletest/test/
H A Dgtest_pred_impl_unittest.cc54 struct Bool { struct
55 explicit Bool(int val) : value(val != 0) {} in Bool() argument
57 bool operator>(int n) const { return value > Bool(n).value; } in operator >() argument
59 Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); } in operator +() argument
61 bool operator==(const Bool& rhs) const { return value == rhs.value; } in operator ==() argument
67 std::ostream& operator<<(std::ostream& os, const Bool& x) { in operator <<()
82 bool PredFunction1Bool(Bool v1) { return v1 > 0; } in PredFunction1Bool()
162 EXPECT_PRED1(PredFunction1Bool, Bool(++n1_)); in TEST_F()
176 EXPECT_PRED1(PredFunctor1(), Bool(++n1_)); in TEST_F()
196 EXPECT_PRED1(PredFunction1Bool, Bool(n1_++)); in TEST_F()
[all …]
/freebsd/contrib/bzip2/
H A Dbzlib_private.h42 typedef unsigned char Bool; typedef
49 #define True ((Bool)1)
50 #define False ((Bool)0)
237 Bool inUse[256];
276 BZ2_compressBlock ( EState*, Bool );
358 Bool blockRandomised;
367 Bool smallDecompress;
395 Bool inUse[256];
396 Bool inUse16[16];
H A Dbzip2.c162 typedef unsigned char Bool; typedef
169 #define True ((Bool)1)
170 #define False ((Bool)0)
184 Bool keepInputFiles, smallMode, deleteOutputOnInterrupt;
185 Bool forceOverwrite, testFailsExist, unzFailsExist, noisy;
266 Bool uInt64_isZero ( UInt64* n ) in uInt64_isZero()
318 Bool myfeof ( FILE* f ) in myfeof()
433 Bool uncompressStream ( FILE *zStream, FILE *stream ) in uncompressStream()
554 Bool testStream ( FILE *zStream ) in testStream()
940 Bool fileExists ( Char* name ) in fileExists()
[all …]
H A Dbzlib.c142 Bool isempty_RL ( EState* s ) in isempty_RL()
292 Bool copy_input_until_stop ( EState* s ) in copy_input_until_stop()
294 Bool progress_in = False; in copy_input_until_stop()
337 Bool copy_output_until_stop ( EState* s ) in copy_output_until_stop()
339 Bool progress_out = False; in copy_output_until_stop()
364 Bool handle_compress ( bz_stream* strm ) in handle_compress()
366 Bool progress_in = False; in handle_compress()
367 Bool progress_out = False; in handle_compress()
389 BZ2_compressBlock ( s, (Bool)(s->mode == BZ_M_FINISHING) ); in handle_compress()
412 Bool progress; in BZ_API()
[all …]
H A Dbzip2recover.c55 typedef unsigned char Bool; typedef
56 #define True ((Bool)1)
57 #define False ((Bool)0)
261 static Bool endsInBz2 ( Char* name ) in endsInBz2()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h344 Bool = 10, enumerator
407 Bool, enumerator
414 explicit Variant(bool V) : Type(PDB_VariantType::Bool) { Value.Bool = V; } in Variant()
455 bool Bool; member
471 case Bool: in isIntegralType()
492 VARIANT_WIDTH(Bool, 1u) in getBitWidth()
517 VARIANT_APSINT(Bool, 1u, true) in toAPSInt()
559 VARIANT_EQUAL_CASE(Bool)
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DPrettyPrinter.h68 SuppressDefaultTemplateArgs(true), Bool(LO.Bool), in PrintingPolicy()
88 Bool = true; in adjustForCPlusPlus()
214 unsigned Bool : 1;
H A DTypeProperties.td35 def : Property<"CountInBytes", Bool> {
38 def : Property<"OrNull", Bool> {
83 def : Property<"isSpelledAsLValue", Bool> {
292 def : Property<"noReturn", Bool> {
295 def : Property<"hasRegParm", Bool> {
304 def : Property<"producesResult", Bool> {
307 def : Property<"noCallerSavedRegs", Bool> {
310 def : Property<"noCfCheck", Bool> {
313 def : Property<"cmseNSCall", Bool> {
329 def : Property<"variadic", Bool> {
[all …]
H A DPropertiesBase.td80 def Bool : PropertyType<"bool">;
363 def : Property<"hasFiller", Bool> {
430 def : Property<"isDerived", Bool> {
470 def : Property<"hasLValuePath", Bool> {
473 def : Property<"isLValueOnePastTheEnd", Bool> {
476 def : Property<"isExpr", Bool> {
479 def : Property<"isTypeInfo", Bool> {
482 def : Property<"isDynamicAlloc", Bool> {
485 def : Property<"hasBase", Bool> {
488 def : Property<"isNullPtr", Bool> {
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Darchive_ppmd7_private.h98 Bool (*Ppmd7_Alloc)(CPpmd7 *p, UInt32 size);
106 Bool (*Ppmd7z_RangeDec_Init)(CPpmd7z_RangeDec *p);
107 Bool (*PpmdRAR_RangeDec_Init)(CPpmd7z_RangeDec *p);
H A Darchive_ppmd8_private.h87 Bool Ppmd8_Alloc(CPpmd8 *p, UInt32 size);
122 Bool Ppmd8_RangeDec_Init(CPpmd8 *p);
136 Bool (*Ppmd8_Alloc)(CPpmd8 *p, UInt32 size);
/freebsd/contrib/libucl/haskell/
H A Dhucl.hs23 … ccall "ucl_parser_add_string" ucl_parser_add_string :: ParserHandle -> CString -> CUInt -> IO Bool
24 foreign import ccall "ucl_parser_add_file" ucl_parser_add_file :: ParserHandle -> CString -> IO Bool
29 foreign import ccall "ucl_object_iterate_safe" ucl_object_iterate_safe :: UCLIterHandle -> Bool -> …
35 foreign import ccall "ucl_object_toboolean" ucl_object_toboolean :: UCLObjectHandle -> Bool
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h57 bool Bool; member
94 return Bool; in getBool()
114 return Bool; in getBool()
173 return Lhs.Bool < Rhs.Bool;
350 N.Bool = V; in getNode()
H A DMsgPackReader.h89 bool Bool;
84 bool Bool; global() member
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DOpcodes.td19 def Bool : Type;
86 Uint32, Sint64, Uint64, Bool];
98 let Types = !listconcat(IntegerTypeClass.Types, [Bool]);
106 let Types = [Bool];
110 let Types = !listconcat(IntegerTypeClass.Types, [Bool], [Float]);
166 // [Bool] -> [], jumps if true.
168 // [Bool] -> [], jumps if false.
257 def ConstBool : ConstOpcode<Bool, ArgBool>;
608 let Types = [Uint8, Sint8, Uint16, Sint16, Uint32, Sint32, Uint64, Sint64, Bool, IntAP, IntAPS];
612 let Types = [Uint8, Sint8, Uint16, Sint16, Uint32, Sint32, Uint64, Sint64, Bool];
[all …]
/freebsd/contrib/bearssl/T0/
H A DTValue.cs67 internal bool Bool { property
194 return v.Bool; in operator bool()
H A DOpcodeJumpIf.cs41 if (v.Bool) { in Run()
H A DOpcodeJumpIfNot.cs41 if (!v.Bool) { in Run()
/freebsd/contrib/googletest/googletest/samples/
H A Dsample8_unittest.cc82 using ::testing::Bool;
152 Combine(Bool(), Values(1, 10)));
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dstih407-c8sectpfe.txt42 - invert-ts-clk : Bool property to control sense of ts input clock (data stored on falling edge of…
43 - serial-not-parallel : Bool property to configure input bus width (serial on ts_data<7>).
44 - async-not-sync : Bool property to control if data is received in asynchronous mode
/freebsd/sys/contrib/device-tree/Bindings/phy/
H A Dphy-miphy365x.txt36 - st,pcie-tx-pol-inv : Bool property to invert the polarity PCIe Tx (Txn/Txp)
37 - st,sata-tx-pol-inv : Bool property to invert the polarity SATA Tx (Txn/Txp)
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp26 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Bool, OS) in operator <<()
54 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_BuiltinType, Bool, OS) in operator <<()
361 case PDB_VariantType::Bool: in operator <<()
362 OS << (Value.Value.Bool ? "true" : "false"); in operator <<()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstShared.h34 Bool = 4, enumerator
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyBuiltinDumper.cpp71 case PDB_BuiltinType::Bool: in getTypeName()
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp41 Bool, enumerator
392 Type = BasicType::Bool; in parseBasicType()
458 case BasicType::Bool: in printBasicType()
750 case BasicType::Bool: in demangleConst()

1234