Home
last modified time | relevance | path

Searched full:ec (Results 1 – 25 of 1768) sorted by relevance

12345678910>>...71

/freebsd/crypto/heimdal/lib/krb5/
H A Dkrb_err.et11 ec KSUCCESS, "Kerberos 4 successful"
12 ec KDC_NAME_EXP, "Kerberos 4 principal expired"
13 ec KDC_SERVICE_EXP, "Kerberos 4 service expired"
14 ec KDC_AUTH_EXP, "Kerberos 4 auth expired"
15 ec KDC_PKT_VER, "Incorrect Kerberos 4 master key version"
16 ec KDC_P_MKEY_VER, "Incorrect Kerberos 4 master key version"
17 ec KDC_S_MKEY_VER, "Incorrect Kerberos 4 master key version"
18 ec KDC_BYTE_ORDER, "Kerberos 4 byte order unknown"
19 ec KDC_PR_UNKNOWN, "Kerberos 4 principal unknown"
20 ec KDC_PR_N_UNIQUE, "Kerberos 4 principal not unique"
[all …]
/freebsd/crypto/krb5/src/lib/krb5/error_tables/
H A Dkdb5_err.et31 ec KRB5_KDB_RCSID, "$Id$"
33 ec KRB5_KDB_INUSE, "Entry already exists in database"
34 ec KRB5_KDB_UK_SERROR, "Database store error"
35 ec KRB5_KDB_UK_RERROR, "Database read error"
36 ec KRB5_KDB_UNAUTH, "Insufficient access to perform requested operation"
38 ec KRB5_KDB_NOENTRY, "No such entry in the database"
40 ec KRB5_KDB_ILL_WILDCARD, "Illegal use of wildcard"
42 ec KRB5_KDB_DB_INUSE, "Database is locked or in use--try again later"
44 ec KRB5_KDB_DB_CHANGED, "Database was modified during read"
46 ec KRB5_KDB_TRUNCATED_RECORD, "Database record is incomplete or corrupted"
[all …]
/freebsd/sys/dev/efidev/
H A Defirt.c534 efi_rt_arch_call_nofault(struct efirt_callinfo *ec) in efi_rt_arch_call_nofault() argument
537 switch (ec->ec_argcnt) { in efi_rt_arch_call_nofault()
539 ec->ec_efi_status = ((register_t EFIABI_ATTR (*)(void)) in efi_rt_arch_call_nofault()
540 ec->ec_fptr)(); in efi_rt_arch_call_nofault()
543 ec->ec_efi_status = ((register_t EFIABI_ATTR (*)(register_t)) in efi_rt_arch_call_nofault()
544 ec->ec_fptr)(ec->ec_arg1); in efi_rt_arch_call_nofault()
547 ec->ec_efi_status = ((register_t EFIABI_ATTR (*)(register_t, in efi_rt_arch_call_nofault()
548 register_t))ec->ec_fptr)(ec->ec_arg1, ec->ec_arg2); in efi_rt_arch_call_nofault()
551 ec->ec_efi_status = ((register_t EFIABI_ATTR (*)(register_t, in efi_rt_arch_call_nofault()
552 register_t, register_t))ec->ec_fptr)(ec->ec_arg1, in efi_rt_arch_call_nofault()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Dgoogle,cros-ec.yaml4 $id: http://devicetree.org/schemas/mfd/google,cros-ec.yaml#
14 Google's ChromeOS EC is a microcontroller which talks to the AP and
16 The EC can be connected through various interfaces (I2C, SPI, and others)
23 For implementations of the EC connected through I2C.
24 const: google,cros-ec-i2c
26 For implementations of the EC connected through SPI.
27 const: google,cros-ec-spi
31 - const: google,cros-ec-fp
32 - const: google,cros-ec-spi
34 For implementations of the EC connected through RPMSG.
[all …]
H A Dcros-ec.txt3 Google's ChromeOS EC is a Cortex-M device which talks to the AP and
6 The EC can be connect through various means (I2C, SPI, LPC, RPMSG) and the
8 its own driver which connects to the top level interface-agnostic EC driver.
9 Other Linux driver (such as cros-ec-keyb for the matrix keyboard) connect to
13 - compatible: "google,cros-ec-i2c"
17 - compatible: "google,cros-ec-spi"
21 - compatible: "google,cros-ec-rpmsg"
24 - google,cros-ec-spi-pre-delay: Some implementations of the EC need a little
28 - google,cros-ec-spi-msg-delay: Some implementations of the EC require some
30 between transactions is not long enough the EC may not be able to respond
[all …]
/freebsd/sys/contrib/device-tree/Bindings/embedded-controller/
H A Dgoogle,cros-ec.yaml4 $id: http://devicetree.org/schemas/embedded-controller/google,cros-ec.yaml#
14 Google's ChromeOS EC is a microcontroller which talks to the AP and
16 The EC can be connected through various interfaces (I2C, SPI, and others)
23 For implementations of the EC connected through I2C.
24 const: google,cros-ec-i2c
26 For implementations of the EC connected through SPI.
27 const: google,cros-ec-spi
31 - const: google,cros-ec-fp
32 - const: google,cros-ec-spi
34 For implementations of the EC connected through RPMSG.
[all …]
/freebsd/crypto/krb5/src/util/et/
H A Dtest1.et6 ec KRB_MK_AP_NOTKT,
9 ec KRB_MK_AP_TGTEXP,
12 ec KRB_RD_AP_UNDEC,
15 ec KRB_RD_AP_EXP,
18 ec KRB_RD_AP_REPEAT,
21 ec KRB_RD_AP_NOT_US,
24 ec KRB_RD_AP_INCON,
27 ec KRB_RD_AP_TIME,
30 ec KRB_RD_AP_BADD,
33 ec KRB_RD_AP_VERSION,
[all …]
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp88 static path __do_absolute(const path& p, path* cwd, error_code* ec) { in __do_absolute() argument
89 if (ec) in __do_absolute()
90 ec->clear(); in __do_absolute()
93 *cwd = __current_path(ec); in __do_absolute()
94 if (ec && *ec) in __do_absolute()
99 path __absolute(const path& p, error_code* ec) { in __absolute() argument
101 return __do_absolute(p, &cwd, ec); in __absolute()
104 path __canonical(path const& orig_p, error_code* ec) { in __canonical() argument
106 ErrorHandler<path> err("canonical", ec, &orig_p, &cwd); in __canonical()
108 path p = __do_absolute(orig_p, &cwd, ec); in __canonical()
[all …]
H A Ddirectory_iterator.cpp43 __dir_stream(const path& root, directory_options opts, error_code& ec) in __dir_stream() argument
46 ec = make_error_code(errc::no_such_file_or_directory); in __dir_stream()
51 ec = detail::get_last_error(); in __dir_stream()
53 if (ignore_permission_denied && ec == errc::permission_denied) in __dir_stream()
54 ec.clear(); in __dir_stream()
58 advance(ec); in __dir_stream()
69 bool advance(error_code& ec) { in advance() argument
93 error_code ec; in close() local
95 ec = detail::get_last_error(); in close()
97 return ec; in close()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DCodeViewRecordIO.cpp110 if (auto EC = Writer->writeBytes(Bytes)) in mapByteVectorTail() local
111 return EC; in mapByteVectorTail()
113 if (auto EC = Reader->readBytes(Bytes, Reader->bytesRemaining())) in mapByteVectorTail() local
114 return EC; in mapByteVectorTail()
122 if (auto EC = mapByteVectorTail(BytesRef, Comment)) in mapByteVectorTail() local
123 return EC; in mapByteVectorTail()
140 if (auto EC = Writer->writeInteger(TypeInd.getIndex())) in mapInteger() local
141 return EC; in mapInteger()
144 if (auto EC = Reader->readInteger(I)) in mapInteger() local
145 return EC; in mapInteger()
[all …]
H A DCVTypeVisitor.cpp28 if (auto EC = Callbacks.visitKnownRecord(Record, KnownRecord)) in visitKnownRecord() local
29 return EC; in visitKnownRecord()
38 if (auto EC = Callbacks.visitKnownMember(Record, KnownRecord)) in visitKnownMember() local
39 return EC; in visitKnownMember()
45 if (auto EC = Callbacks.visitMemberBegin(Record)) in visitMemberRecord() local
46 return EC; in visitMemberRecord()
50 if (auto EC = Callbacks.visitUnknownMember(Record)) in visitMemberRecord() local
51 return EC; in visitMemberRecord()
55 if (auto EC = visitKnownMember<Name##Record>(Record, Callbacks)) \ in visitMemberRecord()
56 return EC; \ in visitMemberRecord()
66 if (auto EC = Callbacks.visitMemberEnd(Record)) visitMemberRecord() local
102 if (auto EC = Callbacks.visitUnknownType(Record)) finishVisitation() local
118 if (auto EC = Callbacks.visitTypeEnd(Record)) finishVisitation() local
125 if (auto EC = Callbacks.visitTypeBegin(Record, Index)) visitTypeRecord() local
132 if (auto EC = Callbacks.visitTypeBegin(Record)) visitTypeRecord() local
145 if (auto EC = visitTypeRecord(I)) visitTypeStream() local
153 if (auto EC = visitTypeRecord(I)) visitTypeStream() local
163 if (auto EC = visitTypeRecord(Type, *I)) visitTypeStream() local
173 if (auto EC = Reader.readEnum(Leaf)) visitFieldListMemberStream() local
178 if (auto EC = ::visitMemberRecord(Record, Callbacks)) visitFieldListMemberStream() local
[all...]
H A DCVSymbolVisitor.cpp27 if (auto EC = Callbacks.visitKnownRecord(Record, KnownRecord)) in visitKnownRecord() local
28 return EC; in visitKnownRecord()
36 if (auto EC = Callbacks.visitUnknownSymbol(Record)) in finishVisitation() local
37 return EC; in finishVisitation()
41 if (auto EC = visitKnownRecord<Name>(Record, Callbacks)) \ in finishVisitation()
42 return EC; \ in finishVisitation()
50 if (auto EC = Callbacks.visitSymbolEnd(Record)) in finishVisitation() local
51 return EC; in finishVisitation()
57 if (auto EC = Callbacks.visitSymbolBegin(Record)) in visitSymbolRecord() local
58 return EC; in visitSymbolRecord()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfReader.cpp495 std::error_code EC = sampleprof_error::malformed; in readNumber() local
496 reportError(0, EC.message()); in readNumber()
497 return EC; in readNumber()
499 std::error_code EC = sampleprof_error::truncated; in readNumber() local
500 reportError(0, EC.message()); in readNumber()
501 return EC; in readNumber()
511 std::error_code EC = sampleprof_error::truncated; in readString() local
512 reportError(0, EC.message()); in readString()
513 return EC; in readString()
523 std::error_code EC = sampleprof_error::truncated; in readUnencodedNumber() local
[all …]
H A DSampleProfWriter.cpp108 if (std::error_code EC = write(ProfileMap)) in writeWithSizeLimitInternal() local
109 return EC; in writeWithSizeLimitInternal()
145 if (std::error_code EC = writeSample(*I.second)) in writeFuncProfiles() local
146 return EC; in writeFuncProfiles()
152 if (std::error_code EC = writeHeader(ProfileMap)) in write() local
153 return EC; in write()
155 if (std::error_code EC = writeFuncProfiles(ProfileMap)) in write() local
156 return EC; in write()
206 if (std::error_code EC = compressAndOutput()) in addNewSection() local
207 return EC; in addNewSection()
[all …]
/freebsd/sys/contrib/ck/include/
H A Dck_ec.h105 * ec is a struct ck_ec32 *, or a struct ck_ec64 *.
115 * `void ck_ec_init(ec, value)`: initializes the event count to value.
117 * `value ck_ec_value(ec)`: returns the current value of the event
120 * `bool ck_ec_has_waiters(ec)`: returns whether some thread has
123 * `void ck_ec_inc(ec, mode)`: increments the value of the event
127 * `value ck_ec_add(ec, mode, value)`: increments the event counter by
139 * `int ck_ec_wait(ec, mode, value, deadline)`: waits until the event
146 * `int ck_ec_wait_pred(ec, mode, value, pred, data, deadline)`: waits
418 static void ck_ec32_init(struct ck_ec32 *ec, uint32_t value);
427 static void ck_ec64_init(struct ck_ec64 *ec, uint64_t value);
[all …]
/freebsd/sys/contrib/ck/src/
H A Dck_ec.c18 struct ck_ec32 *ec; member
24 struct ck_ec64 *ec; member
35 ck_ec32_wake(struct ck_ec32 *ec, const struct ck_ec_ops *ops) in ck_ec32_wake() argument
38 ck_pr_and_32(&ec->counter, (1U << 31) - 1); in ck_ec32_wake()
39 ops->wake32(ops, &ec->counter); in ck_ec32_wake()
44 ck_ec32_wait_slow(struct ck_ec32 *ec, in ck_ec32_wait_slow() argument
49 return ck_ec32_wait_pred_slow(ec, ops, old_value, in ck_ec32_wait_slow()
55 ck_ec64_wake(struct ck_ec64 *ec, const struct ck_ec_ops *ops) in ck_ec64_wake() argument
57 ck_pr_and_64(&ec->counter, ~1); in ck_ec64_wake()
58 ops->wake64(ops, &ec->counter); in ck_ec64_wake()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dfilesystem178 directory_entry(const filesystem::path& p, error_code& ec);
185 void assign(const filesystem::path& p, error_code& ec);
187 void replace_filename(const filesystem::path& p, error_code& ec);
189 void refresh(error_code& ec) noexcept;
194 bool exists(error_code& ec) const noexcept;
196 bool is_block_file(error_code& ec) const noexcept;
198 bool is_character_file(error_code& ec) const noexcept;
200 bool is_directory(error_code& ec) const noexcept;
202 bool is_fifo(error_code& ec) const noexcept;
204 bool is_other(error_code& ec) const noexcept;
[all …]
/freebsd/crypto/openssl/crypto/cms/
H A Dcms_enc.c25 BIO *ossl_cms_EncryptedContent_init_bio(CMS_EncryptedContentInfo *ec, in ossl_cms_EncryptedContent_init_bio() argument
32 X509_ALGOR *calg = ec->contentEncryptionAlgorithm; in ossl_cms_EncryptedContent_init_bio()
44 enc = ec->cipher ? 1 : 0; in ossl_cms_EncryptedContent_init_bio()
56 cipher = ec->cipher; in ossl_cms_EncryptedContent_init_bio()
60 if (ec->key != NULL) in ossl_cms_EncryptedContent_init_bio()
61 ec->cipher = NULL; in ossl_cms_EncryptedContent_init_bio()
113 if (ec->taglen < 4 || ec->taglen > 16 in ossl_cms_EncryptedContent_init_bio()
114 || EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, (int)ec->taglen, ec->tag) <= 0) { in ossl_cms_EncryptedContent_init_bio()
129 if (!enc || !ec->key) { in ossl_cms_EncryptedContent_init_bio()
137 if (!ec->key) { in ossl_cms_EncryptedContent_init_bio()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStream.cpp40 if (auto EC = Reader.readArray(Output, Count)) in loadSectionContribs() local
41 return EC; in loadSectionContribs()
56 if (auto EC = Reader.readObject(Header)) in reload() local
98 if (auto EC = Reader.readSubstream(ModiSubstream, Header->ModiSubstreamSize)) in reload() local
99 return EC; in reload()
101 if (auto EC = Reader.readSubstream(SecContrSubstream, in reload() local
103 return EC; in reload()
104 if (auto EC = Reader.readSubstream(SecMapSubstream, Header->SectionMapSize)) in reload() local
105 return EC; in reload()
106 if (auto EC = Reader.readSubstream(FileInfoSubstream, Header->FileInfoSize)) in reload() local
[all …]
H A DDbiStreamBuilder.cpp199 if (auto EC = MetadataWriter.writeInteger(ModiCount)) // NumModules in generateFileInfoSubstream()
200 return EC; in generateFileInfoSubstream() local
201 if (auto EC = MetadataWriter.writeInteger(FileCount)) // NumSourceFiles in generateFileInfoSubstream()
202 return EC; in generateFileInfoSubstream()
204 if (auto EC = MetadataWriter.writeInteger(I)) // Mod Indices in generateFileInfoSubstream()
205 return EC; in generateFileInfoSubstream()
209 if (auto EC = MetadataWriter.writeInteger(FileCount)) // Mod File Counts in generateFileInfoSubstream()
210 return EC; in generateFileInfoSubstream()
221 if (auto EC = NameBufferWriter.writeCString(Name.getKey())) in generateFileInfoSubstream()
222 return EC; in generateFileInfoSubstream()
198 if (auto EC = MetadataWriter.writeInteger(ModiCount)) // NumModules generateFileInfoSubstream() local
203 if (auto EC = MetadataWriter.writeInteger(I)) // Mod Indices generateFileInfoSubstream() local
208 if (auto EC = MetadataWriter.writeInteger(FileCount)) // Mod File Counts generateFileInfoSubstream() local
220 if (auto EC = NameBufferWriter.writeCString(Name.getKey())) generateFileInfoSubstream() local
230 if (auto EC = MetadataWriter.writeInteger(Result->second)) generateFileInfoSubstream() local
235 if (auto EC = NameBufferWriter.padToAlignment(sizeof(uint32_t))) generateFileInfoSubstream() local
257 if (auto EC = generateFileInfoSubstream()) finalize() local
318 if (auto EC = MI->finalizeMsfLayout()) finalizeMsfLayout() local
323 if (auto EC = Msf.setStreamSize(StreamDBI, Length)) finalizeMsfLayout() local
384 if (auto EC = finalize()) commit() local
391 if (auto EC = Writer.writeObject(*Header)) commit() local
395 if (auto EC = M->commit(Writer)) commit() local
400 if (auto EC = parallelForEachError( commit() local
407 if (auto EC = Writer.writeEnum(DbiSecContribVer60)) commit() local
409 if (auto EC = Writer.writeArray(ArrayRef(SectionContribs))) commit() local
416 if (auto EC = Writer.writeObject(SMHeader)) commit() local
418 if (auto EC = Writer.writeArray(ArrayRef(SectionMap))) commit() local
422 if (auto EC = Writer.writeStreamRef(FileInfoBuffer)) commit() local
425 if (auto EC = ECNamesBuilder.commit(Writer)) commit() local
432 if (auto EC = Writer.writeInteger(StreamNumber)) commit() local
445 if (auto EC = Stream->WriteFn(DbgStreamWriter)) commit() local
[all...]
/freebsd/lib/libbearssl/
H A DMakefile.libsa.inc25 ec/ec_all_m31.c \
26 ec/ec_c25519_m31.c \
27 ec/ec_c25519_m62.c \
28 ec/ec_c25519_m64.c \
29 ec/ec_default.c \
30 ec/ec_p256_m31.c \
31 ec/ec_p256_m62.c \
32 ec/ec_p256_m64.c \
33 ec/ec_prime_i31.c \
34 ec/ec_pubkey.c \
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DIntEqClasses.cpp27 EC.reserve(N); in grow()
28 while (EC.size() < N) in grow()
29 EC.push_back(EC.size()); in grow()
34 unsigned eca = EC[a]; in join()
35 unsigned ecb = EC[b]; in join()
41 EC[b] = eca; in join()
43 ecb = EC[b]; in join()
45 EC[a] = ecb; in join()
47 eca = EC[a]; in join()
55 while (a != EC[a]) in findLeader()
[all …]
/freebsd/crypto/openssl/providers/common/
H A Dcapabilities.c24 * If none of EC, DH OR ML-KEM are available then we have no TLS-GROUP
164 TLS_GROUP_ENTRY("secp256r1", "prime256v1", "EC", 22),
165 TLS_GROUP_ENTRY("P-256", "prime256v1", "EC", 22), /* Alias of above */
166 TLS_GROUP_ENTRY("secp384r1", "secp384r1", "EC", 23),
167 TLS_GROUP_ENTRY("P-384", "secp384r1", "EC", 23), /* Alias of above */
168 TLS_GROUP_ENTRY("secp521r1", "secp521r1", "EC", 24),
169 TLS_GROUP_ENTRY("P-521", "secp521r1", "EC", 24), /* Alias of above */
184 TLS_GROUP_ENTRY("brainpoolP256r1", "brainpoolP256r1", "EC", 25),
185 TLS_GROUP_ENTRY("brainpoolP384r1", "brainpoolP384r1", "EC", 26),
186 TLS_GROUP_ENTRY("brainpoolP512r1", "brainpoolP512r1", "EC", 27),
[all …]
/freebsd/crypto/krb5/src/util/ss/
H A Dss_err.et3 ec SS_ET_SUBSYSTEM_ABORTED,
6 ec SS_ET_VERSION_MISMATCH,
9 ec SS_ET_NULL_INV,
12 ec SS_ET_NO_INFO_DIR,
15 ec SS_ET_COMMAND_NOT_FOUND,
18 ec SS_ET_LINE_ABORTED,
21 ec SS_ET_EOF,
24 ec SS_ET_PERMISSION_DENIED,
27 ec SS_ET_TABLE_NOT_FOUND,
30 ec SS_ET_NO_HELP_FILE,
[all …]
/freebsd/contrib/wpa/src/crypto/
H A Dcrypto.h720 * Internal data structure for EC implementation. The contents is specific
728 * Internal data structure for EC implementation to represent a point. The
737 * Returns: Pointer to EC context or %NULL on failure
743 * @e: EC context from crypto_ec_init()
749 * @e: EC context from crypto_ec_init()
756 * @e: EC context from crypto_ec_init()
763 * @e: EC context from crypto_ec_init()
769 * crypto_ec_get_prime - Get prime defining an EC group
770 * @e: EC context from crypto_ec_init()
776 * crypto_ec_get_order - Get order of an EC group
[all …]

12345678910>>...71