/external/autotest/client/site_tests/graphics_PiglitBVT/piglit_logs/other/all/ |
swanky_15723103_results.json.bz2 | |
quawks_15786471_results.json.bz2 | |
kip_15792084_results.json.bz2 | |
gnawty_15796319_results.json.bz2 | |
clapper_15784794_results.json.bz2 | |
link_15752965_results.json.bz2 | |
squawks_15778848_results.json.bz2 | |
stout_15758473_results.json.bz2 | |
parrot_15692554_results.json.bz2 | |
butterfly_15756947_results.json.bz2 | |
/external/libselinux/src/ |
label_file.h | 28 struct spec { struct 42 char from_mmap; /* this spec is from an mmap of the data */ 68 struct spec *spec_arr; 81 static inline pcre_extra *get_pcre_extra(struct spec *spec) 83 if (spec->from_mmap) 84 return &spec->lsd; 86 return spec->sd; 122 struct spec *specs; 146 static inline void spec_hasMetaChars(struct spec *spec 191 struct spec spec; local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
BCECPrivateKey.java | 8 import java.security.spec.ECParameterSpec; 9 import java.security.spec.ECPoint; 10 import java.security.spec.ECPrivateKeySpec; 11 import java.security.spec.EllipticCurve; 36 import org.bouncycastle.jce.spec.ECNamedCurveSpec; 71 org.bouncycastle.jce.spec.ECPrivateKeySpec spec, 75 this.d = spec.getD(); 77 if (spec.getParams() != null) // can be null if implicitlyCA 79 ECCurve curve = spec.getParams().getCurve() [all...] |
/frameworks/rs/api/ |
Specification.cpp | 60 // The singleton of the collected information of all the spec files. 88 * how specified in the spec file. 376 ConstantSpecification* spec = new ConstantSpecification(constant); local 377 constant->addSpecification(spec); 379 specFile->addConstantSpecification(spec, created); 380 spec->mVersionInfo = info; 383 spec->mValue = scanner->getValue(); 402 TypeSpecification* spec = new TypeSpecification(type); local 403 type->addSpecification(spec); 405 specFile->addTypeSpecification(spec, created) 619 FunctionSpecification* spec = new FunctionSpecification(function); local 894 SpecFile* spec = new SpecFile(fileName); local [all...] |
/frameworks/rs/ |
Android.mk | 78 spec.l \ 105 $(GEN) : PRIVATE_CUSTOM_TOOL = cat $(PRIVATE_PATH)/rs.spec $(PRIVATE_PATH)/rsg.spec | $(RSG_GENERATOR) $< $@ 106 $(GEN) : $(RSG_GENERATOR) $(LOCAL_PATH)/rs.spec $(LOCAL_PATH)/rsg.spec 121 $(GEN) : PRIVATE_CUSTOM_TOOL = cat $(PRIVATE_PATH)/rs.spec $(PRIVATE_PATH)/rsg.spec | $(RSG_GENERATOR) $< $@ 122 $(GEN) : $(RSG_GENERATOR) $(LOCAL_PATH)/rs.spec $(LOCAL_PATH)/rsg.spec 208 $(GEN) : PRIVATE_CUSTOM_TOOL = cat $(PRIVATE_PATH)/rs.spec $(PRIVATE_PATH)/rsg.spec | $(RSG_GENERATOR) $< $ [all...] |
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLECPublicKey.java | 25 import java.security.spec.ECParameterSpec; 26 import java.security.spec.ECPoint; 27 import java.security.spec.ECPublicKeySpec; 28 import java.security.spec.InvalidKeySpecException; 134 final ECParameterSpec spec = getParams(); local 137 return spec.getCurve().equals(otherSpec.getCurve()) 138 && spec.getGenerator().equals(otherSpec.getGenerator()) 139 && spec.getOrder().equals(otherSpec.getOrder()) 140 && spec.getCofactor() == otherSpec.getCofactor();
|
/cts/tests/tests/keystore/src/android/keystore/cts/ |
KeyPairGeneratorSpecTest.java | 43 KeyPairGeneratorSpec spec = new KeyPairGeneratorSpec.Builder(getContext()) local 51 assertEquals("Context should be the one specified", getContext(), spec.getContext()); 53 assertEquals("Alias should be the one specified", TEST_ALIAS_1, spec.getKeystoreAlias()); 55 assertEquals("subjectDN should be the one specified", TEST_DN_1, spec.getSubjectDN()); 57 assertEquals("startDate should be the one specified", NOW, spec.getStartDate()); 59 assertEquals("endDate should be the one specified", NOW_PLUS_10_YEARS, spec.getEndDate()); 61 assertFalse("encryption flag should not be on", spec.isEncryptionRequired()); 65 KeyPairGeneratorSpec spec = new KeyPairGeneratorSpec.Builder(getContext()) local 74 assertEquals("Context should be the one specified", getContext(), spec.getContext()); 76 assertEquals("Alias should be the one specified", TEST_ALIAS_1, spec.getKeystoreAlias()) [all...] |
/external/mesa3d/src/gallium/include/pipe/ |
p_video_state.h | 42 * see table 6-12 in the spec 53 * see table 6-14 in the spec 64 * flags for macroblock_type, see section 6.3.17.1 in the spec 76 * flags for motion_type, see table 6-17 and 6-18 in the spec 88 * see section 6.3.17.1 and table 6-19 in the spec 147 /* see section 6.3.17 in the spec */ 150 /* see section 6.3.17.1 in the spec */ 155 /* see table 6-17 in the spec */ 158 /* see table 6-18 in the spec */ 161 /* see table 6-19 in the spec */ [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
JCEECPublicKey.java | 8 import java.security.spec.ECParameterSpec; 9 import java.security.spec.ECPoint; 10 import java.security.spec.ECPublicKeySpec; 11 import java.security.spec.EllipticCurve; 43 // import org.bouncycastle.jce.spec.ECNamedCurveParameterSpec; 45 import org.bouncycastle.jce.spec.ECNamedCurveSpec; 77 ECPublicKeySpec spec) 80 this.ecSpec = spec.getParams(); 81 this.q = EC5Util.convertPoint(ecSpec, spec.getW(), false); 86 org.bouncycastle.jce.spec.ECPublicKeySpec spec [all...] |
/frameworks/compile/mclinker/include/mcld/Script/ |
InputSectDesc.h | 30 struct Spec { 53 bool operator==(const Spec& pRHS) const { 73 const Spec& pSpec, 79 const Spec& spec() const { return m_Spec; } function in class:mcld::InputSectDesc 91 Spec m_Spec;
|
/libcore/luni/src/test/java/tests/security/spec/ |
ECPrivateKeySpecTest.java | 17 package tests.security.spec; 22 import java.security.spec.ECFieldF2m; 23 import java.security.spec.ECParameterSpec; 24 import java.security.spec.ECPoint; 25 import java.security.spec.ECPrivateKeySpec; 26 import java.security.spec.EllipticCurve;
|
ECPublicKeySpecTest.java | 17 package tests.security.spec; 22 import java.security.spec.ECFieldF2m; 23 import java.security.spec.ECParameterSpec; 24 import java.security.spec.ECPoint; 25 import java.security.spec.ECPublicKeySpec; 26 import java.security.spec.EllipticCurve;
|
/external/deqp/modules/egl/ |
teglMakeCurrentPerfTests.cpp | 71 struct Spec 85 MakeCurrentPerfCase (EglTestContext& eglTestCtx, const Spec& spec, const char* name, const char* description); 93 Spec m_spec; 124 string MakeCurrentPerfCase::Spec::toName (void) const 151 string MakeCurrentPerfCase::Spec::toDescription (void) const 157 MakeCurrentPerfCase::MakeCurrentPerfCase (EglTestContext& eglTestCtx, const Spec& spec, const char* name, const char* description) 159 , m_spec (spec) 568 MakeCurrentPerfCase::Spec spec local 604 MakeCurrentPerfCase::Spec spec; local 647 MakeCurrentPerfCase::Spec spec; local 697 MakeCurrentPerfCase::Spec spec; local [all...] |
/external/emma/ant/ant14/com/vladium/emma/instr/ |
FilterCfg.java | 49 final String spec = specs [i]; local 51 if (spec.startsWith (IInclExclFilter.INCLUSION_PREFIX_STRING) || 52 spec.startsWith (IInclExclFilter.EXCLUSION_PREFIX_STRING)) 54 appendValue (spec, COMMA); 58 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec, COMMA); // default to inclusion 77 final String spec = specs [i]; local 79 if (spec.startsWith (IInclExclFilter.INCLUSION_PREFIX_STRING)) 81 appendValue (spec, COMMA); 85 if (spec.startsWith (IInclExclFilter.EXCLUSION_PREFIX_STRING)) 86 appendValue (IInclExclFilter.INCLUSION_PREFIX + spec.substring (1), COMMA); // overrid 99 final String spec = specs [i]; local [all...] |
/external/selinux/libselinux/src/ |
label_android_property.c | 17 typedef struct spec { struct 34 const struct spec *sp1 = A, *sp2 = B; 54 struct spec *curr_spec, *spec_arr = data->spec_arr; 109 /* On the second pass, process and store the specification in spec. */ 162 * After the first pass, the spec array is malloced to the appropriate 163 * size. Second pass is to populate the spec array and check for 201 qsort(data->spec_arr, data->nspec, sizeof(struct spec), cmp); 220 struct spec *spec; local 224 spec = &data->spec_arr[i] [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
LocalList.java | 127 /** {@code non-null;} register spec representing the variable */ 128 private final RegisterSpec spec; field in class:LocalList.Entry 130 /** {@code non-null;} variable type (derived from {@code spec}) */ 138 * @param spec {@code non-null;} register spec representing 141 public Entry(int address, Disposition disposition, RegisterSpec spec) { 151 if (spec.getLocalItem() == null) { 153 "spec.getLocalItem() == null"); 157 throw new NullPointerException("spec == null"); 162 this.spec = spec [all...] |