| /freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Boolean.h | 1 //===--- Boolean.h - Wrapper for boolean types for the VM -------*- C++ -*-===// 24 /// Wrapper around boolean types. 25 class Boolean final { 27 /// Underlying boolean. 31 /// Zero-initializes a boolean. 32 Boolean() : V(false) {} in Boolean() function 33 explicit Boolean(bool V) : V(V) {} in Boolean() function 35 bool operator<(Boolean RHS) const { return V < RHS.V; } 36 bool operator>(Boolean RHS) const { return V > RHS.V; } 37 bool operator<=(Boolean RHS) const { return V <= RHS.V; } [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
| H A D | pincfg-node.yaml | 22 type: boolean 26 type: boolean 30 type: boolean 35 - type: boolean 42 - type: boolean 49 - type: boolean 56 - type: boolean 64 - type: boolean 71 type: boolean 82 type: boolean [all …]
|
| /freebsd/sys/contrib/dev/acpica/compiler/ |
| H A D | aslglobal.h | 295 ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (AslGbl_DoCompile, TRUE); 296 ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (AslGbl_DoSignon, TRUE); 297 ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (AslGbl_PreprocessOnly, FALSE); 298 ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (AslGbl_PreprocessFlag, TRUE); 299 ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (AslGbl_DisassembleAll, FALSE); 300 ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (AslGbl_UseDefaultAmlFilename, TRUE); 301 ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (AslGbl_MapfileFlag, FALSE); 302 ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (AslGbl_NsOutputFlag, FALSE); 303 ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (AslGbl_PreprocessorOutputFlag, FALSE); 304 ASL_EXTERN BOOLEAN ASL_INIT_GLOBAL (AslGbl_KeepPreprocessorTempFile, FALSE); [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/usb/ |
| H A D | snps,dwc3-common.yaml | 57 type: boolean 61 type: boolean 66 type: boolean 83 type: boolean 89 type: boolean 93 type: boolean 101 type: boolean 105 type: boolean 110 type: boolean 116 type: boolean [all …]
|
| H A D | usb251xb.yaml | 84 (boolean, default is self-powered) 90 (boolean, default is self-powered) 95 disable USB Hi-Speed support (boolean) 101 (boolean, default is multi-tt) 107 (boolean, default is multi-tt) 112 disable End of Packet generation in full-speed mode (boolean) 118 (boolean, default is individual) 124 (boolean, default is individual) 129 select port power switching mode (boolean, default is individual) 134 select port power switching mode (boolean, default is individual) [all …]
|
| H A D | usb251xb.txt | 25 (boolean, default is self-powered) 26 - disable-hi-speed : disable USB Hi-Speed support (boolean) 28 (boolean, default is multi-tt) 29 - disable-eop : disable End of Packet generation in full-speed mode (boolean) 31 mode (boolean, default is individual) 33 (boolean, default is individual) 35 operation if the local power source is removed or unavailable (boolean) 39 - compound-device : indicate the hub is part of a compound device (boolean) 40 - port-mapping-mode : enable port mapping mode (boolean) 42 (boolean, default is speed mode)
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | TargetProperties.td | 4 def InjectLocalVars : Property<"inject-local-vars", "Boolean">, 14 def MoveToNearestCode: Property<"move-to-nearest-code", "Boolean">, 40 def EnableSynthetic: Property<"enable-synthetic-value", "Boolean">, 43 def SkipPrologue: Property<"skip-prologue", "Boolean">, 49 def AutoSourceMapRelative: Property<"auto-source-map-relative", "Boolean">, 61 def AutoImportClangModules: Property<"auto-import-clang-modules", "Boolean">, 73 def AutoApplyFixIts: Property<"auto-apply-fixits", "Boolean">, 79 def NotifyAboutFixIts: Property<"notify-about-fixits", "Boolean">, 85 …riableValuesWithLeadingZeroes: Property<"show-hex-variable-values-with-leading-zeroes", "Boolean">, 104 def BreakpointUseAvoidList: Property<"breakpoints-use-platform-avoid-list", "Boolean">, [all …]
|
| /freebsd/crypto/libecc/ |
| H A D | meson.options | 2 option('use_external_rand', type: 'boolean', value: false, description: 'use external get_random() … 3 option('use_external_print', type: 'boolean', value: false, description: 'use external ext_printf()… 4 option('use_external_time', type: 'boolean', value: false, description: 'use external get_ms_time()… 5 option('with_tests', type: 'boolean', value: false, description: 'enable test suites support') 8 option('with_stdlib', type: 'boolean', value : true, description: 'trigger stdlib usage (default to… 9 option('with_debug', type: 'boolean', value : false, description: 'activate libecc debug assertions… 10 option('use_cryptofuzz', type: 'boolean', value : false, description: 'activate cryptofuzz fuzzing … 11 option('assert_print', type: 'boolean', value : false, description: 'activate printing on assertion… 12 option('no_warn_unused_ret', type: 'boolean', value : false, description: 'do not trigger a warning… 15 option('with_sig_blinding', type: 'boolean', value: false, description: 'blind signature against so… [all …]
|
| /freebsd/contrib/libucl/tests/schema/ |
| H A D | type.json | 32 "description": "a boolean is not an integer", 73 "description": "a boolean is not a number", 114 "description": "a boolean is not a string", 155 "description": "a boolean is not an object", 196 "description": "a boolean is not an array", 208 "description": "boolean type matches booleans", 209 "schema": {"type": "boolean"}, 212 "description": "an integer is not a boolean", 217 "description": "a float is not a boolean", 222 "description": "a string is not a boolean", [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/iio/addac/ |
| H A D | adi,ad74115.yaml | 109 type: boolean 114 type: boolean 120 type: boolean 126 type: boolean 130 type: boolean 134 type: boolean 152 type: boolean 160 type: boolean 164 type: boolean 168 type: boolean [all...] |
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | InterpreterProperties.td | 4 def ExpandRegexAliases: Property<"expand-regex-aliases", "Boolean">, 8 def PromptOnQuit: Property<"prompt-on-quit", "Boolean">, 12 def SaveTranscript: Property<"save-transcript", "Boolean">, 16 def SaveSessionOnQuit: Property<"save-session-on-quit", "Boolean">, 20 def OpenTranscriptInEditor: Property<"open-transcript-in-editor", "Boolean">, 27 def StopCmdSourceOnError: Property<"stop-command-source-on-error", "Boolean">, 31 def SpaceReplPrompts: Property<"space-repl-prompts", "Boolean">, 35 def EchoCommands: Property<"echo-commands", "Boolean">, 39 def EchoCommentCommands: Property<"echo-comment-commands", "Boolean">, 43 def RepeatPreviousCommand: Property<"repeat-previous-command", "Boolean">, [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | ti,gpmc-child.yaml | 126 # Boolean timing parameters. If property is present, parameter is enabled 130 type: boolean 134 type: boolean 140 type: boolean 146 type: boolean 150 type: boolean 154 type: boolean 158 type: boolean 186 type: boolean 190 type: boolean [all …]
|
| /freebsd/lib/libefivar/ |
| H A D | efivar-dp-format.c | 132 IN BOOLEAN DisplayOnly, in DevPathToTextPci() 133 IN BOOLEAN AllowShortcuts in DevPathToTextPci() 159 IN BOOLEAN DisplayOnly, in DevPathToTextPccard() 160 IN BOOLEAN AllowShortcuts in DevPathToTextPccard() 186 IN BOOLEAN DisplayOnly, in DevPathToTextMemMap() 187 IN BOOLEAN AllowShortcuts in DevPathToTextMemMap() 219 IN BOOLEAN DisplayOnly, in DevPathToTextVendor() 220 IN BOOLEAN AllowShortcuts in DevPathToTextVendor() 350 IN BOOLEAN DisplayOnly, in DevPathToTextController() 351 IN BOOLEAN AllowShortcuts in DevPathToTextController() [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/iio/frequency/ |
| H A D | adi,adrf6780.yaml | 45 type: boolean 51 type: boolean 57 type: boolean 63 type: boolean 70 type: boolean 77 type: boolean 83 type: boolean 89 type: boolean 95 type: boolean 101 type: boolean
|
| /freebsd/sys/contrib/device-tree/Bindings/regulator/ |
| H A D | max8973-regulator.txt | 15 -maxim,externally-enable: boolean, externally control the regulator output 22 -maxim,enable-remote-sense: boolean, enable reote sense. 23 -maxim,enable-falling-slew-rate: boolean, enable falling slew rate. 24 -maxim,enable-active-discharge: boolean: enable active discharge. 25 -maxim,enable-frequency-shift: boolean, enable 9% frequency shift. 26 -maxim,enable-bias-control: boolean, enable bias control. By enabling this 28 -maxim,enable-etr: boolean, enable Enhanced Transient Response. 29 -maxim,enable-high-etr-sensitivity: boolean, Enhanced transient response
|
| H A D | maxim,max8973.yaml | 43 type: boolean 54 type: boolean 58 type: boolean 62 type: boolean 66 type: boolean 70 type: boolean 75 type: boolean 79 type: boolean
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | Solver.h | 32 /// Indicates that there exists a satisfying assignment for a boolean 36 /// Indicates that there is no satisfying assignment for a boolean 41 /// assignment for a boolean formula. 45 /// A boolean value is set to true or false in a truth assignment. 48 /// Constructs a result indicating that the queried boolean formula is 54 /// Constructs a result indicating that the queried boolean formula is 59 /// queried boolean formula was not completed. 62 /// Returns the status of satisfiability checking on the queried boolean 66 /// Returns a truth assignment to boolean values that satisfies the queried 67 /// boolean formula if available. Otherwise, an empty optional is returned.
|
| /freebsd/sys/contrib/dev/acpica/include/ |
| H A D | acglobal.h | 217 ACPI_GLOBAL (BOOLEAN, AcpiGbl_GlobalLockAcquired); 218 ACPI_GLOBAL (BOOLEAN, AcpiGbl_GlobalLockPresent); 219 ACPI_GLOBAL (BOOLEAN, AcpiGbl_GlobalLockPending); 255 ACPI_INIT_GLOBAL (BOOLEAN, AcpiGbl_Shutdown, TRUE); 256 ACPI_INIT_GLOBAL (BOOLEAN, AcpiGbl_EarlyInitialization, TRUE); 277 ACPI_INIT_GLOBAL (BOOLEAN, AcpiGbl_NamespaceInitialized, FALSE); 286 ACPI_GLOBAL (BOOLEAN, AcpiGbl_StepToNextCall); 287 ACPI_GLOBAL (BOOLEAN, AcpiGbl_AcpiHardwarePresent); 288 ACPI_GLOBAL (BOOLEAN, AcpiGbl_EventsInitialized); 307 ACPI_GLOBAL (BOOLEAN, AcpiGbl_DisplayFinalMemStats); [all …]
|
| /freebsd/sys/contrib/edk2/Include/Protocol/ |
| H A D | PxeBaseCode.h | 171 BOOLEAN AcceptAnyResponse; 180 BOOLEAN UseMCast; 181 BOOLEAN UseBCast; 182 BOOLEAN UseUCast; 183 BOOLEAN MustUseList; 270 BOOLEAN Started; 271 BOOLEAN Ipv6Available; 272 BOOLEAN Ipv6Supported; 273 BOOLEAN UsingIpv6; 274 BOOLEAN BisSupported; [all …]
|
| /freebsd/release/scripts/oracle/ |
| H A D | image_capability_data.json | 4 "descriptorType": "boolean", 19 "descriptorType": "boolean", 23 "descriptorType": "boolean", 27 "descriptorType": "boolean", 31 "descriptorType": "boolean", 84 "descriptorType": "boolean",
|
| /freebsd/sys/contrib/device-tree/Bindings/input/ |
| H A D | iqs626a.yaml | 49 type: boolean 53 type: boolean 75 type: boolean 79 type: boolean 111 type: boolean 115 type: boolean 121 type: boolean 178 type: boolean 184 type: boolean 190 type: boolean [all …]
|
| H A D | iqs269a.yaml | 41 type: boolean 60 type: boolean 71 type: boolean 143 type: boolean 147 type: boolean 151 type: boolean 155 type: boolean 167 type: boolean 186 type: boolean 202 type: boolean [all...] |
| /freebsd/crypto/heimdal/lib/krb5/ |
| H A D | krb5.conf.5 | 86 .It boolean 120 .It Li forwardable = Va boolean 122 .It Li proxiable = Va boolean 124 .It Li no-addresses = Va boolean 131 .It Li encrypt = Va boolean 133 .It Li forward = Va boolean 146 .It Li allow_weak_crypto = Va boolean 193 .It Li dns_lookup_kdc = Va boolean 195 .It Li dns_lookup_realm = Va boolean 197 .It Li kdc_timesync = Va boolean [all …]
|
| /freebsd/contrib/kyua/utils/ |
| H A D | sanity.hpp | 72 /// \param expr A boolean expression. 91 /// boolean condition. If you want to provide a custom error message, use 94 /// \param expr A boolean expression describing the invariant. 103 /// \param expr A boolean expression describing the invariant. 114 /// boolean condition. If you want to provide a custom error message, use 117 /// \param expr A boolean expression describing the precondition. 126 /// \param expr A boolean expression describing the precondition. 137 /// boolean condition. If you want to provide a custom error message, use 140 /// \param expr A boolean expression describing the postcondition. 149 /// \param expr A boolean expression describing the postcondition. [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | Checkers.td | 52 CmdLineOption<Boolean, 139 CmdLineOption<Boolean, 162 CmdLineOption<Boolean, 168 CmdLineOption<Boolean, 174 CmdLineOption<Boolean, 180 CmdLineOption<Boolean, 185 CmdLineOption<Boolean, 191 CmdLineOption<Boolean, 197 CmdLineOption<Boolean, 202 CmdLineOption<Boolean, [all …]
|