/freebsd/share/examples/bootforth/ |
H A D | frames.4th | 15 196 constant sh_el 16 179 constant sv_el 17 218 constant slt_el 18 192 constant slb_el 19 191 constant srt_el 20 217 constant srb_el 22 205 constant dh_el 23 186 constant dv_el 24 201 constant dlt_el 25 200 constant dlb_el [all …]
|
/freebsd/stand/forth/ |
H A D | frames.4th | 43 45 constant ascii_dash 44 61 constant ascii_equal 45 124 constant ascii_pipe 46 43 constant ascii_plus 49 0x2500 constant sh_el 50 0x2502 constant sv_el 51 0x250c constant slt_el 52 0x2514 constant slb_el 53 0x2510 constant srt_el 54 0x2518 constant srb_el [all …]
|
/freebsd/contrib/less/ |
H A D | prompt.c | 37 extern constant char *editor; 38 extern constant char *editproto; 45 static constant char s_proto[] = 47 static constant char m_proto[] = 49 static constant char M_proto[] = 51 static constant char e_proto[] = 53 static constant char h_proto[] = 55 static constant char w_proto[] = 57 static constant char more_proto[] = 61 public char constant *eqprot [all...] |
H A D | help.c | 3 constant char helpdata[] = { 319 constant int size_helpdata = sizeof(helpdata) - 1;
|
H A D | funcs.h | 1 public char * saven(constant char *s, size_t n); 2 public char * save(constant char *s); 6 public constant char * skipspc(constant char *s); 7 public size_t sprefix(constant char *ps, constant char *s, int uppercase); 12 public constant char * special_key_str(int key); 34 public COLOR_TYPE parse_color(constant char *str, mutable int *p_fg, mutable int *p_bg, mutable CHAR_ATTR *p_cattr); 46 public void WIN32textout(constant char *text, size_t len); 66 public void setfmt(constant cha [all...] |
/freebsd/contrib/tcpdump/ |
H A D | netdissect-stdinc.h | 146 #define INT64_T_CONSTANT(constant) (constant##LL) argument 158 #define INT64_T_CONSTANT(constant) (constant##LL) argument 258 #define INT64_T_CONSTANT(constant) (constant##LL) argument
|
/freebsd/sys/kgssapi/krb5/ |
H A D | kcrypto.c | 182 void *constant, size_t constantlen) in krb5_derive_key() argument 195 krb5_n_fold(folded, ec->ec_blocklen, constant, constantlen); in krb5_derive_key() 228 uint8_t constant[5]; in krb5_get_usage_key() local 230 constant[0] = usage >> 24; in krb5_get_usage_key() 231 constant[1] = usage >> 16; in krb5_get_usage_key() 232 constant[2] = usage >> 8; in krb5_get_usage_key() 233 constant[3] = usage; in krb5_get_usage_key() 234 constant[4] = which; in krb5_get_usage_key() 235 return (krb5_derive_key(basekey, constant, 5)); in krb5_get_usage_key()
|
/freebsd/crypto/openssl/providers/implementations/kdfs/ |
H A D | krb5kdf.c | 47 const unsigned char *constant, size_t constant_len, 55 unsigned char *constant; member 91 OPENSSL_clear_free(ctx->constant, ctx->constant_len); in krb5kdf_reset() 124 if (ctx->constant == NULL) { in krb5kdf_derive() 130 ctx->constant, ctx->constant_len, in krb5kdf_derive() 152 if (!krb5kdf_set_membuf(&ctx->constant, &ctx->constant_len, p)) in krb5kdf_set_ctx_params() 266 const unsigned char *constant, size_t constant_len) in n_fold() argument 272 memcpy(block, constant, constant_len); in n_fold() 308 tmp = (constant[(rbyte-1) % constant_len] << (8 - rshift) in n_fold() 309 | constant[rbyte % constant_len] >> rshift) in n_fold() [all …]
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | EVP_KDF-KRB5KDF.pod | 14 AES-128-CBC), the initial key, and a constant. 35 =item "constant" (B<OSSL_KDF_PARAM_CONSTANT>) <octet string> 37 This parameter sets the constant value for the KDF. 52 constant's length must not exceed the block size of the cipher. 67 unsigned char constant[] = "I'm a constant"; 82 constant, strlen(constant));
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticASTKinds.td | 16 " is not allowed in a constant expression" 19 "cast from %0 is not allowed in a constant expression " 33 "be used in a constant expression">; 36 "constant expression; derived class cannot be implicitly initialized">; 40 "cannot evaluate call to virtual function in a constant expression " 47 "whose dynamic type is not constant">; 56 "in a constant expression">; 58 "non-literal type %0 cannot be used in a constant expression">; 61 "%select{temporary|%3}2 is not a constant expression">; 64 "of the enclosing function; add 'static' to give it a constant address">; [all …]
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGDecl.cpp | 1053 llvm::Constant *constant); 1059 llvm::Constant *constant) { in constStructWithPadding() argument 1074 if (constant->isZeroValue()) in constStructWithPadding() 1077 CurOp = cast<llvm::Constant>(constant->getAggregateElement(i)); in constStructWithPadding() 1090 return constant; in constStructWithPadding() 1097 llvm::Constant *constant) { in constWithPadding() argument 1098 llvm::Type *OrigTy = constant->getType(); in constWithPadding() 1100 return constStructWithPadding(CGM, isPattern, STy, constant); in constWithPadding() 1105 return constant; in constWithPadding() 1107 bool ZeroInitializer = constant->isNullValue(); in constWithPadding() [all …]
|
H A D | ConstantInitBuilder.cpp | 70 bool constant, in createGlobal() argument 75 constant, in createGlobal() 273 auto constant = llvm::ConstantArray::get(type, elts); in finishArray() local 275 return constant; in finishArray() 288 llvm::Constant *constant; in finishStruct() local 291 constant = llvm::ConstantStruct::get(ty, elts); in finishStruct() 293 constant = llvm::ConstantStruct::getAnon(elts, Packed); in finishStruct() 297 return constant; in finishStruct()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/ |
H A D | LanaiInstrFormats.td | 34 // opcode Rd Rs1 constant (16) 37 // Rd <- Rs1 op constant 39 // Except for shift instructions, `H' determines whether the constant 42 // halfword is 0xFFFF, and shifts (`AAA' = 111), for which the constant is 52 // sign extended constant interpreted as a two's complement number. The 175 // opcode Rd Rs1 constant (16) 189 // 01 ea = Rs1, Rs1 <- Rs1 + constant 190 // 10 ea = Rs1 + constant 191 // 11 ea = Rs1 + constant, Rs1 <- Rs1 + constant 193 // The constant is sign-extended for this instruction. [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | IRInterpreter.cpp | 168 const Constant *constant = dyn_cast<Constant>(value); in EvaluateValue() local 170 if (constant) { in EvaluateValue() 171 if (constant->getValueID() == Value::ConstantFPVal) { in EvaluateValue() 172 if (auto *cfp = dyn_cast<ConstantFP>(constant)) { in EvaluateValue() 185 if (!ResolveConstantValue(value_apint, constant)) in EvaluateValue() 258 bool ResolveConstantValue(APInt &value, const Constant *constant) { in ResolveConstantValue() argument 259 switch (constant->getValueID()) { in ResolveConstantValue() 263 if (const Function *constant_func = dyn_cast<Function>(constant)) { in ResolveConstantValue() 274 if (const ConstantInt *constant_int = dyn_cast<ConstantInt>(constant)) { in ResolveConstantValue() 280 if (const ConstantFP *constant_fp = dyn_cast<ConstantFP>(constant)) { in ResolveConstantValue() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/power/supply/ |
H A D | sc2731_charger.txt | 12 - constant-charge-voltage-max-microvolt: maximum constant input voltage. 20 constant-charge-voltage-max-microvolt = <4350000>;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | ValueLattice.h | 53 constant, enumerator 99 case constant: in destroy() 160 case constant: in ValueLatticeElement() 179 case constant: in ValueLatticeElement() 240 bool isConstant() const { return Tag == constant; } in isConstant() 331 Tag = constant;
|
/freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
H A D | msm8216-samsung-fortuna3g.dts | 15 constant-charge-current-max-microamp = <1000000>; 16 constant-charge-voltage-max-microvolt = <4350000>;
|
H A D | msm8916-samsung-grandprimelte.dts | 15 constant-charge-current-max-microamp = <1000000>; 16 constant-charge-voltage-max-microvolt = <4350000>;
|
H A D | msm8916-samsung-rossa.dts | 15 constant-charge-current-max-microamp = <700000>; 16 constant-charge-voltage-max-microvolt = <4400000>;
|
H A D | msm8916-samsung-e7.dts | 28 constant-charge-current-max-microamp = <1500000>; 29 constant-charge-voltage-max-microvolt = <4350000>;
|
H A D | msm8916-samsung-a5u-eur.dts | 34 constant-charge-current-max-microamp = <1500000>; 35 constant-charge-voltage-max-microvolt = <4350000>;
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | BN_zero.pod | 28 BN_value_one() returns a B<BIGNUM> constant of value 1. This constant 39 BN_value_one() returns the constant.
|
/freebsd/crypto/heimdal/lib/asn1/ |
H A D | asn1parse.c | 307 int64_t constant; member 402 /* Identity function, used to suppress warnings about constant conditions. */ 1961 (yyval.member)->val = (yyvsp[(3) - (4)].constant); 2189 (yyval.type)->tag.tagenv = (yyvsp[(2) - (3)].constant); 2190 if((yyvsp[(3) - (3)].type)->type == TTag && (yyvsp[(2) - (3)].constant) == TE_IMPLICIT) { 2201 (yyval.tag).tagclass = (yyvsp[(2) - (4)].constant); 2202 (yyval.tag).tagvalue = (yyvsp[(3) - (4)].constant); 2210 (yyval.constant) = ASN1_C_CONTEXT; 2217 (yyval.constant) = ASN1_C_UNIV; 2224 (yyval.constant) [all...] |
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | derived-key-test.c | 40 unsigned char constant[MAXSIZE]; member 98 ret = krb5_derive_key(context, &key, t->enctype, t->constant, in main()
|
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/ |
H A D | rk3326-odroid-go2.dts | 44 constant-charge-current-max-microamp = <2000000>; 45 constant-charge-voltage-max-microvolt = <4200000>;
|