HomeSort by relevance Sort by last modified time
    Searched full:ecc (Results 1 - 25 of 497) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tpm2/
ECC_Parameters.c 15 // TPM_RC_VALUE Unsupported ECC curve ID
25 // Get ECC curve parameters
ECDH_KeyGen.c 15 // TPM_RC_KEY keyHandle does not reference a non-restricted decryption ECC key
31 // Input key must be a non-restricted, decrypt ECC key
43 // Create ephemeral ECC key
53 &sensitive, &eccKey->publicArea.unique.ecc);
ActivateCredential.c 16 // TPM_RC_ECC_POINT secret is invalid (when keyHandle is an ECC key)
17 // TPM_RC_INSUFFICIENT secret is invalid (when keyHandle is an ECC key)
19 // TPM_RC_NO_RESULT secret is invalid (when keyHandle is an ECC key)
ECDH_ZGen.c 16 // TPM_RC_KEY key referenced by keyA is not an ECC key
34 // Input key must be a non-restricted, decrypt ECC key
53 &eccKey->sensitive.sensitive.ecc,
ZGen_2Phase.c 18 // TPM_RC_KEY key referenced by keyA is not an ECC key
37 // keyA must be an ECC key
81 &eccKey->sensitive.sensitive.ecc,
CryptUtil_fp.h 14 TPM_ECC_CURVE curveID, // IN: the starting ECC curve
16 TPML_ECC_CURVE *curveList // OUT: ECC curve list
87 // This macro returns the size of the ECC key in bytes. It uses
124 TPM_ECC_CURVE curveId, // IN: ECC curve ID
125 TPMS_ALGORITHM_DETAIL_ECC *parameters // OUT: ECC parameter
132 BOOL CryptEccIsPointOnCurve(TPM_ECC_CURVE curveID, // IN: ECC curve ID
133 TPMS_ECC_POINT *Q // IN: ECC point
238 TPM_RC CryptNewEccKey(TPM_ECC_CURVE curveID, // IN: ECC curve
Certify.c 19 // small (for an RSA key); invalid commit status (for an ECC key with a
  /system/core/toolbox/
nandread.c 46 struct mtd_ecc_stats initial_ecc, last_ecc, ecc; local
153 fprintf(stderr, "failed get ecc layout for %s, %s\n",
158 printf("ecc bytes: %u\n", ecclayout.eccbytes);
166 fprintf(stderr, "failed get ecc stats for %s, %s\n",
173 printf("initial ecc corrected: %u\n", initial_ecc.corrected);
174 printf("initial ecc failed: %u\n", initial_ecc.failed);
175 printf("initial ecc badblocks: %u\n", initial_ecc.badblocks);
176 printf("initial ecc bbtblocks: %u\n", initial_ecc.bbtblocks);
208 ret = ioctl(fd, ECCGETSTATS, &ecc);
210 fprintf(stderr, "failed get ecc stats for %s, %s\n"
    [all...]
  /system/extras/libfec/
fec_open.cpp 98 /* attempts to read and validate an ecc header from file position `offset' */
102 check(f->ecc.rsn > 0 && f->ecc.rsn < FEC_RSM);
113 /* there's obviously no ecc data at this point, so there is no need to
127 error("unsupported ecc version: %u", header.version);
131 error("unexpected ecc header size: %u", header.size);
135 error("invalid ecc roots: %u", header.roots);
138 if (f->ecc.roots != (int)header.roots) {
139 error("unexpected number of roots: %d vs %u", f->ecc.roots,
145 error("inconsistent ecc size %u", header.fec_size)
    [all...]
fec_read.cpp 109 ecc_info *e = &f->ecc;
163 error("failed to read ecc data: %s", strerror(errno));
211 rs.reset(init_rs_char(FEC_PARAMS(f->ecc.roots)));
222 error("failed to allocate ecc buffer");
298 if (f->ecc.start && ecc_init(f, rs, ecc_data) == -1) {
342 if (!f->ecc.start) {
343 /* fatal error without ecc */
534 } else if (f->ecc.start) {
535 check(f->ecc.start < f->size);
544 /* return raw data if pure ecc read fails; due to interleavin
    [all...]
fec_private.h 36 #include <fec/ecc.h>
100 ecc_info ecc; member in struct:fec_handle
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_ErrorCorrection.cpp 95 CFX_WideString ecc = local
98 sb += ecc;
119 CFX_WideString ecc = createECCBlock(temp, errorSizes[block], e); local
124 sb.SetAt(symbolInfo->m_dataCapacity + l, ecc.GetAt(pos++));
151 FX_WORD* ecc = FX_Alloc(FX_WORD, numECWords); local
152 FXSYS_memset(ecc, 0, numECWords * sizeof(FX_WORD));
154 FX_WORD m = ecc[numECWords - 1] ^ codewords.GetAt(l);
157 ecc[k] = (FX_WORD)(ecc[k - 1] ^
160 ecc[k] = ecc[k - 1];
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
dnssec.py 21 ECC = 4
35 'ECC' : ECC,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/mtd/
mtd-abi.h 52 /* ECC byte placement */
53 #define MTD_NANDECC_OFF 0 // Switch off ECC (Not recommended)
56 #define MTD_NANDECC_PLACEONLY 3 // Use the given placement in the structure (Do not store ecc result on read)
132 * ECC layout control structure. Exported to userspace for
  /system/extras/libfec/include/fec/
ecc.h 26 /* ecc parameters */
56 /* returns the size of ecc data given a file size and the number of roots */
  /external/kernel-headers/original/uapi/mtd/
mtd-abi.h 114 /* Obsolete ECC byte placement modes (used with obsolete MEMGETOOBSEL) */
115 #define MTD_NANDECC_OFF 0 // Switch off ECC (Not recommended)
118 #define MTD_NANDECC_PLACEONLY 3 // Use the given placement in the structure (Do not store ecc result on read)
186 /* Get ECC layout (deprecated) */
226 * OBSOLETE: ECC layout control structure. Exported to user-space via ioctl
228 * complete set of ECC information. The ioctl truncates the larger internal
258 * @MTD_FILE_MODE_NORMAL: OTP disabled, ECC enabled
261 * @MTD_FILE_MODE_RAW: OTP disabled, ECC disabled
  /external/strace/linux/
mtd-abi.h 113 /* Obsolete ECC byte placement modes (used with obsolete MEMGETOOBSEL) */
114 #define MTD_NANDECC_OFF 0 // Switch off ECC (Not recommended)
117 #define MTD_NANDECC_PLACEONLY 3 // Use the given placement in the structure (Do not store ecc result on read)
185 /* Get ECC layout (deprecated) */
225 * OBSOLETE: ECC layout control structure. Exported to user-space via ioctl
227 * complete set of ECC information. The ioctl truncates the larger internal
257 * @MTD_FILE_MODE_NORMAL: OTP disabled, ECC enabled
260 * @MTD_FILE_MODE_RAW: OTP disabled, ECC disabled
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/mtd/
mtd-abi.h 113 /* Obsolete ECC byte placement modes (used with obsolete MEMGETOOBSEL) */
114 #define MTD_NANDECC_OFF 0 // Switch off ECC (Not recommended)
117 #define MTD_NANDECC_PLACEONLY 3 // Use the given placement in the structure (Do not store ecc result on read)
185 /* Get ECC layout (deprecated) */
224 * OBSOLETE: ECC layout control structure. Exported to user-space via ioctl
226 * complete set of ECC information. The ioctl truncates the larger internal
256 * @MTD_FILE_MODE_NORMAL: OTP disabled, ECC enabled
259 * @MTD_FILE_MODE_RAW: OTP disabled, ECC disabled
  /external/opencv3/samples/cpp/
image_alignment.cpp 3 * findTransformECC that implements the image alignment ECC algorithm
50 "{n numOfIter | 50 | ECC's iterations }"
51 "{e epsilon | 0.0001 | ECC's convergence epsilon }"
52 "{o outputWarp | outWarp.ecc | output warp (matrix) filename }"
62 cout << "\nThis file demostrates the use of the ECC image alignment algorithm. When one image"
67 cout << "\nUsage example (one image): \n./ecc ../data/fruits.jpg -o=outWarp.ecc "
70 cout << "\nUsage example (two images with initialization): \n./ecc yourInput.png yourTemplate.png "
71 "yourInitialWarp.ecc -o=outWarp.ecc -m=homography -e=1e-6 -N=70 -v=1 -w=yourFinalImage.png \n" << endl
    [all...]
  /frameworks/base/docs/html/images/media/
mediacodec_async_states.svg 10 <marker orient="auto" overflow="visible" markerUnits="strokeWidth" id="FilledArrow_Marker_2" viewBox="-1 -3 7 6" markerWidth="7" markerHeight="6" color="#274ecc">
45 <line x1="740" y1="598.5" x2="740" y2="561.4" marker-end="url(#FilledArrow_Marker_2)" stroke="#274ecc" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
46 <line x1="763.33333" y1="458.5" x2="763.33333" y2="495.6" marker-end="url(#FilledArrow_Marker_2)" stroke="#274ecc" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
47 <line x1="920" y1="542" x2="822.9" y2="541.85288" marker-end="url(#FilledArrow_Marker_2)" stroke="#274ecc" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
83 <text transform="translate(857.8257 546.43005)" fill="#274ecc">
84 <tspan font-family="Roboto Condensed" font-size="16" font-weight="300" font-stretch="condensed" fill="#274ecc" x=".4453125" y="15" textLength="4.8359375">r</tspan>
85 <tspan font-family="Roboto Condensed" font-size="16" font-weight="300" font-stretch="condensed" fill="#274ecc" x="5.1328125" y="15" textLength="26.421875">eset</tspan>
87 <text transform="translate(768.33333 466.62302)" fill="#274ecc">
88 <tspan font-family="Roboto Condensed" font-size="16" font-weight="300" font-stretch="condensed" fill="#274ecc" x=".4453125" y="15" textLength="4.8359375">r</tspan>
89 <tspan font-family="Roboto Condensed" font-size="16" font-weight="300" font-stretch="condensed" fill="#274ecc" x="5.1328125" y="15" textLength="26.421875">eset</tspan
    [all...]
  /system/core/fs_mgr/
fs_mgr_verity.cpp 234 struct fec_ecc_metadata ecc; member in struct:verity_table_params
253 if (params->ecc.valid) {
258 params->ecc.start / FEC_BLOCKSIZE, params->ecc.blocks, params->ecc.roots);
263 params->ecc.start / FEC_BLOCKSIZE, params->ecc.blocks, params->ecc.roots);
900 // read ecc metadata
901 if (fec_ecc_get_metadata(f, &params.ecc) < 0)
    [all...]
  /external/tpm2/generator/
union_selectors.py 148 'TPM_ALG_ECC': 'ecc',
157 'TPM_ALG_ECC': 'ecc',
  /system/ca-certificates/files/
0d69c7e1.0 20 Issuer: OU=GlobalSign ECC Root CA - R4, O=GlobalSign, CN=GlobalSign
24 Subject: OU=GlobalSign ECC Root CA - R4, O=GlobalSign, CN=GlobalSign
  /system/ca-certificates/google/files/
0d69c7e1.0 20 Issuer: OU=GlobalSign ECC Root CA - R4, O=GlobalSign, CN=GlobalSign
24 Subject: OU=GlobalSign ECC Root CA - R4, O=GlobalSign, CN=GlobalSign
  /system/tpm/trunks/generator/
union_selectors.py 160 'TPM_ALG_ECC': 'ecc',
169 'TPM_ALG_ECC': 'ecc',

Completed in 615 milliseconds

1 2 3 4 5 6 7 8 91011>>