| /freebsd/crypto/heimdal/lib/hx509/ | 
| H A D | crmf.asn1 | 22 -- XXX IMPLICIT brokenness 24 	poposkInput           [0] IMPLICIT POPOSigningKeyInput OPTIONAL, 33 -- XXX IMPLICIT brokenness 36 		sender              [0] IMPLICIT GeneralName, 55 -- XXX IMPLICIT brokenness 58 	subsequentMessage [1] IMPLICIT SubsequentMessage, 60 	agreeMAC          [3] IMPLICIT PKMACValue, 64 -- XXX IMPLICIT brokenness 79 	issuer       [3] IMPLICIT CHOICE { 86 	subject      [5] IMPLICIT CHOICE { [all …] 
 | 
| /freebsd/contrib/lyaml/lib/lyaml/ | 
| H A D | explicit.lua | 28 local implicit = require 'lyaml.implicit' 45    implicit.bool, 53 -- @usage maybe_float = maybefloat(implicit.decimal)(tagarg) 71    implicit.float, 72    implicit.nan, 73    implicit.inf, 74    maybefloat(implicit.octal), 75    maybefloat(implicit.decimal), 76    maybefloat(implicit.hexadecimal), 77    maybefloat(implicit.binary), [all …] 
 | 
| H A D | implicit.lua | 1 -- LYAML parse implicit type tokens. 25 --- @module lyaml.implicit 44       -- Don't perform implicit string-to-number conversion! 72 -- @usage maybe_null = implicit.null(token) 96 -- @usage maybe_bool = implicit.bool(token) 106 -- @usage maybe_int = implicit.binary(value) 126 -- @usage maybe_int = implicit.octal(value) 146 -- @usage maybe_int = implicit.decimal(value) 166 -- @usage maybe_int = implicit.hexadecimal(value) 185 -- @usage maybe_int = implicit.sexagesimal(value) [all …] 
 | 
| H A D | init.lua | 33 local implicit = require 'lyaml.implicit' 66       implicit.null, 67       implicit.octal,	-- subset of decimal, must come earlier 68       implicit.decimal, 69       implicit.float, 70       implicit.bool, 71       implicit.inf, 72       implicit.nan, 73       implicit.hexadecimal, 74       implicit.binary, [all …] 
 | 
| /freebsd/lib/libc/stdlib/ | 
| H A D | random.c | 122 static struct __random_state implicit = {  variable 147 	.rst_fptr = &implicit.rst_randtbl[SEP_3 + 1], 148 	.rst_rptr = &implicit.rst_randtbl[1], 160 	.rst_state = &implicit.rst_randtbl[1], 164 	.rst_end_ptr = &implicit.rst_randtbl[DEG_3 + 1], 231 	srandom_r(&implicit, x);  in srandom() 280 	srandomdev_r(&implicit);  in srandomdev() 352 	char *ostate = (char *)(&implicit.rst_state[-1]);  in initstate() 360 	if (implicit.rst_type == TYPE_0)  in initstate() 361 		implicit.rst_state[-1] = implicit.rst_type;  in initstate() [all …] 
 | 
| /freebsd/contrib/bearssl/T0/ | 
| H A D | TValue.cs | 152 	public static implicit operator TValue(bool val)  in operator TValue() 157 	public static implicit operator TValue(sbyte val)  in operator TValue() 162 	public static implicit operator TValue(byte val)  in operator TValue() 167 	public static implicit operator TValue(short val)  in operator TValue() 172 	public static implicit operator TValue(ushort val)  in operator TValue() 177 	public static implicit operator TValue(char val)  in operator TValue() 182 	public static implicit operator TValue(int val)  in operator TValue() 187 	public static implicit operator TValue(uint val)  in operator TValue() 192 	public static implicit operator bool(TValue v)  in operator bool() 197 	public static implicit operator sbyte(TValue v)  in operator sbyte() [all …] 
 | 
| /freebsd/crypto/heimdal/lib/asn1/ | 
| H A D | pkinit.asn1 | 54 	caName                  [0] IMPLICIT OCTET STRING, 61 	subjectName		[0] IMPLICIT OCTET STRING OPTIONAL, 62 	issuerAndSerialNumber	[1] IMPLICIT OCTET STRING OPTIONAL, 63 	subjectKeyIdentifier	[2] IMPLICIT OCTET STRING OPTIONAL, 70         signedAuthPack          [0] IMPLICIT OCTET STRING, 72 	kdcPkId                 [2] IMPLICIT OCTET STRING OPTIONAL, 105 	dhSignedData            [0] IMPLICIT OCTET STRING, 114 	encKeyPack              [1] IMPLICIT OCTET STRING, 156 	signed-auth-pack	[0] IMPLICIT OCTET STRING, 158 	kdc-cert		[3] IMPLICIT OCTET STRING OPTIONAL, [all …] 
 | 
| H A D | cms.asn1 | 78 	signedAttrs [0] IMPLICIT -- CMSAttributes -- 82 	unsignedAttrs [1] IMPLICIT -- CMSAttributes -- 92 	certificates [0] IMPLICIT -- CertificateSet -- 94 	crls [1] IMPLICIT -- CertificateRevocationLists -- 100 	certs [0] IMPLICIT -- CertificateSet -- 102 	crls [1] IMPLICIT --CertificateRevocationLists -- 127 	encryptedContent [0] IMPLICIT OCTET STRING OPTIONAL 135         unprotectedAttrs [1] IMPLICIT -- UnprotectedAttributes -- 141 	originatorInfo [0] IMPLICIT -- OriginatorInfo -- heim_any OPTIONAL, 144 	unprotectedAttrs [1] IMPLICIT -- UnprotectedAttributes --
  | 
| H A D | test.asn1 | 38 TESTInteger2 ::= [4] IMPLICIT TESTInteger 39 TESTInteger3 ::= [5] IMPLICIT TESTInteger2 42 	ti1[0] IMPLICIT INTEGER (-2147483648..2147483647), 43 	ti2[1] IMPLICIT SEQUENCE { 46 	ti3[2] IMPLICIT [5] IMPLICIT [4] IMPLICIT INTEGER (-2147483648..2147483647) 50 	ti1[0] IMPLICIT TESTInteger, 51 	ti2[1] IMPLICIT TESTLargeTag, 52 	ti3[2] IMPLICIT TESTInteger [all...] | 
| H A D | rfc2459.asn1 | 218      issuerUniqueID  [1]  IMPLICIT BIT STRING -- UniqueIdentifier -- OPTIONAL, 220      subjectUniqueID [2]  IMPLICIT BIT STRING -- UniqueIdentifier -- OPTIONAL, 262 	otherName			[0]     IMPLICIT -- OtherName -- SEQUENCE { 266 	rfc822Name			[1]     IMPLICIT IA5String, 267 	dNSName				[2]     IMPLICIT IA5String, 268 --	x400Address			[3]     IMPLICIT ORAddress,-- 269 	directoryName			[4]     IMPLICIT -- Name -- CHOICE { 272 --	ediPartyName			[5]     IMPLICIT EDIPartyName, -- 273 	uniformResourceIdentifier	[6]     IMPLICIT IA5String, 274 	iPAddress			[7]     IMPLICIT OCTET STRING, [all …] 
 | 
| /freebsd/contrib/lyaml/spec/ | 
| H A D | ext_yaml_emitter_spec.yaml | 11                   {type = "DOCUMENT_START", implicit = true}, 13                   {type = "DOCUMENT_END", implicit = true}, 59   - it accepts an implicit parameter: 60       expect (emit {{type = "DOCUMENT_START", implicit = true}, 64       expect (emit {{type = "DOCUMENT_START", implicit = false}, 69   - it accepts an implicit parameter: 71                     {type = "DOCUMENT_END", implicit = false}}). 75                     {type = "DOCUMENT_END", implicit = true}}). 105                      tag = "tag:yaml.org,2002:map", implicit = false}, 109   - it accepts an implicit tag parameter: ' [all …] 
 | 
| /freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ | 
| H A D | ubsan_checks.inc | 42             "implicit-unsigned-integer-truncation", 43             "implicit-unsigned-integer-truncation") 45             "implicit-signed-integer-truncation", 46             "implicit-signed-integer-truncation") 48             "implicit-integer-sign-change", 49             "implicit-integer-sign-change") 51             "implicit-signed-integer-truncation-or-sign-change", 52             "implicit-signed-integer-truncation,implicit-integer-sign-change")
  | 
| /freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/ | 
| H A D | MSP430InstrInfo.td | 455                   (implicit SR)]>; 459                     (implicit SR)]>; 464                   (implicit SR)]>; 468                     (implicit SR)]>; 484                   (implicit SR)]>; 488                   (implicit SR)]>; 492                   (implicit SR)]>; 496                   (implicit SR)]>; 501                   (implicit SR)]>; 505                     (implicit S [all...] | 
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ | 
| H A D | Sanitizers.def | 156 SANITIZER("implicit-unsigned-integer-truncation", 158 SANITIZER("implicit-signed-integer-truncation", ImplicitSignedIntegerTruncation) 159 SANITIZER_GROUP("implicit-integer-truncation", ImplicitIntegerTruncation, 163 SANITIZER("implicit-integer-sign-change", ImplicitIntegerSignChange) 165 SANITIZER_GROUP("implicit-integer-arithmetic-value-change", 169 SANITIZER_GROUP("implicit-integer-conversion", ImplicitIntegerConversion, 173 // Implicit bitfield sanitizers 174 SANITIZER("implicit-bitfield-conversion", ImplicitBitfieldConversion) 176 SANITIZER_GROUP("implicit-conversion", ImplicitConversion,
  | 
| /freebsd/contrib/libyaml/tests/ | 
| H A D | run-emitter.c | 31                     event_from->data.document_start.implicit);  in copy_event() 35                     event_from->data.document_end.implicit);  in copy_event() 55                     event_from->data.sequence_start.implicit,  in copy_event() 65                     event_from->data.mapping_start.implicit,  in copy_event() 109             /* if (event1->data.document_start.implicit != event2->data.document_start.implicit)  in compare_events() 115             /* return (event1->data.document_end.implicit ==  in compare_events() 116                     event2->data.document_end.implicit); */  in compare_events() 160             if ((event1->data.sequence_start.implicit != event2->data.sequence_start.implicit)  in compare_events() 178             if ((event1->data.mapping_start.implicit != event2->data.mapping_start.implicit)  in compare_events()
  | 
| H A D | example-deconstructor.c | 402                 /* Write 'implicit'. */  in main() 405 …                       NULL, (yaml_char_t *)"tag:yaml.org,2002:str", (yaml_char_t *)"implicit", -1,  in main() 411                 /* Write if the document is implicit. */  in main() 415                             (yaml_char_t *)(input_event.data.document_start.implicit ?  in main() 444                 /* Write 'implicit'. */  in main() 447 …                       NULL, (yaml_char_t *)"tag:yaml.org,2002:str", (yaml_char_t *)"implicit", -1,  in main() 453                 /* Write if the document is implicit. */  in main() 457                             (yaml_char_t *)(input_event.data.document_end.implicit ?  in main() 597                 /* Display if the scalar tag is implicit. */  in main() 599                 /* Write 'implicit'. */  in main() [all …] 
 | 
| H A D | run-emitter-test-suite.c | 87         int implicit;  in main()  local 97             implicit = strncmp(line+4, " ---", 4) != 0;  in main() 98 …        ok = yaml_document_start_event_initialize(&event, version_directive, NULL, NULL, implicit);  in main() 101             implicit = strncmp(line+4, " ...", 4) != 0;  in main() 102             ok = yaml_document_end_event_initialize(&event, implicit);  in main() 135             implicit = (get_tag(line, tag) == NULL);  in main() 138 …anchor), (yaml_char_t *) get_tag(line, tag), (yaml_char_t *) value, -1, implicit, implicit, style);  in main()
  | 
| /freebsd/sys/conf/ | 
| H A D | files | 9 	no-obj no-implicit-rule before-depend				   \ 14 	no-obj no-implicit-rule before-depend				   \ 19 	no-obj no-implicit-rule before-depend				   \ 24 	no-obj no-implicit-rule before-depend \ 29 	no-obj no-implicit-rule before-depend				   \ 34 	no-obj no-implicit-rule before-depend				   \ 38 	no-obj no-implicit-rule before-depend				\ 43 	no-obj no-implicit-rule before-depend				   \ 48 	no-obj no-implicit-rule before-depend				   \ 52 	no-obj no-implicit-rule before-depend				\ [all …] 
 | 
| /freebsd/contrib/lyaml/ext/yaml/ | 
| H A D | emitter.c | 95    int implicit = 0;  in emit_DOCUMENT_START()  local 138    RAWGET_BOOLEAN (implicit); lua_pop (L, 1);  in emit_DOCUMENT_START() 144       tag_directives_start, tag_directives_end, implicit);  in emit_DOCUMENT_START() 154    int implicit = 0;  in emit_DOCUMENT_END()  local 156    RAWGET_BOOLEAN (implicit);  in emit_DOCUMENT_END() 158    yaml_document_end_event_initialize (&event, implicit);  in emit_DOCUMENT_END() 170    int implicit = 1;  in emit_MAPPING_START()  local 191    RAWGET_BOOLEAN (implicit);  lua_pop (L, 1);  in emit_MAPPING_START() 193    yaml_mapping_start_event_initialize (&event, anchor, tag, implicit, yaml_style);  in emit_MAPPING_START() 215    int implicit = 1;  in emit_SEQUENCE_START()  local [all …] 
 | 
| /freebsd/contrib/lyaml/doc/modules/ | 
| H A D | lyaml.implicit.html | 44   <li><strong>lyaml.implicit</strong></li> 51 <h1>Module <code>lyaml.implicit</code></h1> 145         <pre class="example">maybe_null = implicit.null(token)</pre> 169 …     <span class="types"><a class="type" href="../modules/lyaml.implicit.html#bool">bool</a></span> 183         <pre class="example">maybe_bool = implicit.bool(token)</pre> 220         <pre class="example">maybe_int = implicit.binary(value)</pre> 257         <pre class="example">maybe_int = implicit.octal(value)</pre> 294         <pre class="example">maybe_int = implicit.decimal(value)</pre> 331         <pre class="example">maybe_int = implicit.hexadecimal(value)</pre> 369         <pre class="example">maybe_int = implicit.sexagesimal(value)</pre> [all …] 
 | 
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ | 
| H A D | ProcessImplicitDefs.cpp | 61                 "Process Implicit Definitions", false, false) 87     // implicit-def when possible.  in processImplicitDef() 101   // This is a physreg implicit-def.  in processImplicitDef() 140   LLVM_DEBUG(dbgs() << "********** PROCESS IMPLICIT DEFS **********\n"  in runOnMachineFunction() 151     // Scan the basic block for implicit defs.  in runOnMachineFunction() 160                       << " implicit defs.\n");  in runOnMachineFunction() 163     // Drain the WorkList to recursively process any new implicit defs.  in runOnMachineFunction()
  | 
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ | 
| H A D | ArrayRef.h | 67     /*implicit*/ ArrayRef() = default; 70     /*implicit*/ ArrayRef(std::nullopt_t) {}  in ArrayRef() 73     /*implicit*/ ArrayRef(const T &OneElt)  in ArrayRef() 77     constexpr /*implicit*/ ArrayRef(const T *data, size_t length)  in ArrayRef() 90     /*implicit*/ ArrayRef(const SmallVectorTemplateCommon<T, U> &Vec)  in ArrayRef() 96     /*implicit*/ ArrayRef(const std::vector<T, A> &Vec)  in ArrayRef() 101     /*implicit*/ constexpr ArrayRef(const std::array<T, N> &Arr)  in ArrayRef() 106     /*implicit*/ constexpr ArrayRef(const T (&Arr)[N]) : Data(Arr), Length(N) {}  in ArrayRef() 116     constexpr /*implicit*/ ArrayRef(const std::initializer_list<T> &Vec)  in ArrayRef() 135     /*implicit*/ ArrayRef( [all …] 
 | 
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ | 
| H A D | HexagonMCShuffler.cpp | 114     //    BUNDLE implicit-def %d2, implicit-def %r4, implicit-def %r5,  in HexagonMCShuffle() 115     //    implicit-def %d7, ...  in HexagonMCShuffle() 139     //    BUNDLE implicit-def %d2, implicit-def %r4, implicit-def %r5,  in HexagonMCShuffle() 140     //    implicit-def %d7, ...  in HexagonMCShuffle()
  | 
| /freebsd/sys/contrib/device-tree/Bindings/net/dsa/ | 
| H A D | sja1105.txt | 30 	The effect of this property (in either its implicit or explicit form) 90 				/* Implicit "sja1105,role-mac;" */ 98 				/* Implicit "sja1105,role-mac;" */ 106 				/* Implicit "sja1105,role-mac;" */ 114 				/* Implicit "sja1105,role-mac;" */ 121 				/* Implicit "sja1105,role-phy;" */
  | 
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ | 
| H A D | LambdaCapture.h | 28     /// capture was implicit. 65   /// \param Implicit Whether the capture was implicit or explicit. 73   LambdaCapture(SourceLocation Loc, bool Implicit, LambdaCaptureKind Kind, 109   /// Determine whether this was an implicit capture (not 122   /// explicit capture in the source. For an implicit capture, this
  |