Home
last modified time | relevance | path

Searched refs:transformation (Results 1 – 25 of 524) sorted by relevance

12345678910>>...21

/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/crypto/
DCipherBasicsTest.java93 String transformation = entry.getKey(); in testBasicEncryption() local
100 && transformation.equals("AES/ECB/NoPadding")) { in testBasicEncryption()
106 cipher = Cipher.getInstance(transformation, p); in testBasicEncryption()
115 getBaseAlgorithm(transformation)); in testBasicEncryption()
123 params = AlgorithmParameters.getInstance(getBaseAlgorithm(transformation)); in testBasicEncryption()
132 + ", algorithm " + transformation in testBasicEncryption()
138 + ", algorithm " + transformation in testBasicEncryption()
154 String transformation = entry.getKey(); in testAeadEncryption() local
158 cipher = Cipher.getInstance(transformation, p); in testAeadEncryption()
167 getBaseAlgorithm(transformation)); in testAeadEncryption()
[all …]
DCipherTest.java3363 public final String transformation; field in CipherTest.CipherTestParam
3381 public CipherTestParam(String transformation, AlgorithmParameterSpec spec, Key encryptKey, in CipherTestParam() argument
3384 this.transformation = transformation.toUpperCase(Locale.ROOT); in CipherTestParam()
3395 public CipherTestParam(String transformation, AlgorithmParameterSpec spec, Key key, in CipherTestParam() argument
3398 this(transformation, spec, key, key, aad, plaintext, plaintextPadded, ciphertext, in CipherTestParam()
3402 public CipherTestParam(String transformation, AlgorithmParameterSpec spec, Key key, in CipherTestParam() argument
3404 this(transformation, spec, key, aad, plaintext, plaintextPadded, ciphertext, in CipherTestParam()
3410 if (provider.equals("SunJCE") && transformation.endsWith("/PKCS7PADDING")) { in compatibleWith()
3418 public OAEPCipherTestParam(String transformation, OAEPParameterSpec spec, in OAEPCipherTestParam() argument
3420 … super(transformation, spec, encryptKey, decryptKey, null, plaintext, plaintext, ciphertext, in OAEPCipherTestParam()
[all …]
/external/fonttools/Lib/fontTools/pens/
DtransformPen.py15 def __init__(self, outPen, transformation): argument
20 if not hasattr(transformation, "transformPoint"):
22 transformation = Transform(*transformation)
23 self._transformation = transformation
24 self._transformPoint = transformation.transformPoint
54 def addComponent(self, glyphName, transformation): argument
55 transformation = self._transformation.transform(transformation)
56 self._outPen.addComponent(glyphName, transformation)
DbasePen.py108 def addComponent(self, glyphName, transformation): argument
140 def addComponent(self, glyphName, transformation): argument
189 def addComponent(self, glyphName, transformation): argument
199 tPen = TransformPen(self, transformation)
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DEngineKey.java21 private final Transformation transformation; field in EngineKey
31 ResourceDecoder decoder, Transformation transformation, ResourceEncoder encoder, in EngineKey() argument
39 this.transformation = transformation; in EngineKey()
71 } else if (transformation == null ^ engineKey.transformation == null) { in equals()
73 …} else if (transformation != null && !transformation.getId().equals(engineKey.transformation.getId… in equals()
108 … hashCode = 31 * hashCode + (transformation != null ? transformation.getId().hashCode() : 0); in hashCode()
126 .append(transformation != null ? transformation.getId() : "") in toString()
146 …messageDigest.update((transformation != null ? transformation.getId() : "").getBytes(STRING_CHARSE… in updateDiskCacheKey()
DDecodeJob.java39 private final Transformation<T> transformation; field in DecodeJob
49 …DataLoadProvider<A, T> loadProvider, Transformation<T> transformation, ResourceTranscoder<T, Z> tr… in DecodeJob() argument
51 …this(resultKey, width, height, fetcher, loadProvider, transformation, transcoder, diskCache, diskC… in DecodeJob()
57 …DataLoadProvider<A, T> loadProvider, Transformation<T> transformation, ResourceTranscoder<T, Z> tr… in DecodeJob() argument
64 this.transformation = transformation; in DecodeJob()
235 Resource<T> transformed = transformation.transform(decoded, width, height); in transform()
/external/tensorflow/tensorflow/docs_src/performance/
Ddatasets_performance.md102 @{tf.data.Dataset.prefetch} transformation, which can be used to decouple the
104 transformation uses a background thread and an internal buffer to prefetch
107 the final transformation to your dataset pipeline (or `prefetch(n)` if a single
126 Note that the prefetch transformation will yield benefits any time there is an
133 end, the `tf.data` API offers the @{tf.data.Dataset.map} transformation, which
137 multiple CPU cores. To make this possible, the `map` transformation provides the
140 to the `map` transformation:
168 transformation, which effectively "fuses" the map and batch transformations.
208 API offers the @{tf.contrib.data.parallel_interleave} transformation. Use this
209 transformation to parallelize the execution of and interleave the contents of
[all …]
/external/conscrypt/common/src/main/java/org/conscrypt/
DCryptoUpcalls.java160 String transformation = "RSA/ECB/" + jcaPadding; in rsaDecryptWithPrivateKey() local
167 c = Cipher.getInstance(transformation); in rsaDecryptWithPrivateKey()
175 logger.warning("Unsupported cipher algorithm: " + transformation); in rsaDecryptWithPrivateKey()
178 logger.warning("Unsupported cipher algorithm: " + transformation); in rsaDecryptWithPrivateKey()
188 ArrayList<Provider> providers = getExternalProviders("Cipher." + transformation); in rsaDecryptWithPrivateKey()
191 c = Cipher.getInstance(transformation, p); in rsaDecryptWithPrivateKey()
203 logger.warning("Could not find provider for algorithm: " + transformation); in rsaDecryptWithPrivateKey()
213 + " private key using " + transformation + ":", in rsaDecryptWithPrivateKey()
/external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
Dgraph_transformations.cc142 for (const auto& transformation : transformations) { in GraphTransformationsPass() local
144 CHECK(transformation->Messages().empty()); in GraphTransformationsPass()
145 changed_now = transformation->Run(model, op_index); in GraphTransformationsPass()
150 if (transformation->Messages().empty()) { in GraphTransformationsPass()
151 VLOG(log_level) << transformation->Name() << " " << made_a_change_msg in GraphTransformationsPass()
155 for (const string& message : transformation->Messages()) { in GraphTransformationsPass()
156 VLOG(log_level) << transformation->Name() << " " << made_a_change_msg in GraphTransformationsPass()
160 transformation->ClearMessages(); in GraphTransformationsPass()
Dremove_trivial_reshape.cc32 RemoveTrivialReshape* transformation) { in IsReshapeTrivial() argument
40 if (transformation->treat_expand_dims_as_trivial() && in IsReshapeTrivial()
42 transformation->AddMessageF( in IsReshapeTrivial()
50 transformation->AddMessageF( in IsReshapeTrivial()
62 transformation->AddMessageF( in IsReshapeTrivial()
Dquantize.cc86 void QuantizeArray(GraphTransformation* transformation, Model* model, in QuantizeArray() argument
97 transformation->AddMessageF("Quantized array %s", name); in QuantizeArray()
100 void QuantizeArray(GraphTransformation* transformation, Model* model, in QuantizeArray() argument
105 return QuantizeArray<ArrayDataType::kUint8>(transformation, model, name, in QuantizeArray()
108 return QuantizeArray<ArrayDataType::kInt16>(transformation, model, name, in QuantizeArray()
111 return QuantizeArray<ArrayDataType::kInt32>(transformation, model, name, in QuantizeArray()
170 GraphTransformation* transformation, Model* model, const Operator& op, in ChooseQuantizationForOperatorInput() argument
216 transformation->AddMessageF( in ChooseQuantizationForOperatorInput()
236 transformation->AddMessageF( in ChooseQuantizationForOperatorInput()
309 GraphTransformation* transformation, Model* model, const Operator& op, in ChooseQuantizationForOperatorOutput() argument
[all …]
Dremove_trivial_passthrough.cc50 bool RemoveTrivialPassthroughOp(GraphTransformation* transformation, in RemoveTrivialPassthroughOp() argument
82 transformation->AddMessageF( in RemoveTrivialPassthroughOp()
92 transformation->AddMessageF("Removing %s, keeping its output array", in RemoveTrivialPassthroughOp()
101 transformation->AddMessageF( in RemoveTrivialPassthroughOp()
/external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/
DOpenJdkCipherFactory.java29 public Cipher newCipher(String transformation) in newCipher() argument
31 return Cipher.getInstance(transformation); in newCipher()
36 public Cipher newCipher(String transformation) in newCipher() argument
38 return Cipher.getInstance(transformation, TestUtils.getConscryptProvider()); in newCipher()
/external/glide/library/src/main/java/com/bumptech/glide/load/
DMultiTransformation.java36 for (Transformation<T> transformation : transformations) { in transform()
37 Resource<T> transformed = transformation.transform(previous, outWidth, outHeight); in transform()
50 for (Transformation<T> transformation : transformations) { in getId()
51 sb.append(transformation.getId()); in getId()
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
DGifFrameManager.java37 private Transformation<Bitmap> transformation = UnitTransformation.get(); field in GifFrameManager
72 public void setFrameTransformation(Transformation<Bitmap> transformation) { in setFrameTransformation() argument
73 if (transformation == null) { in setFrameTransformation()
76 this.transformation = transformation; in setFrameTransformation()
96 .transform(transformation) in getNextFrame()
DGifResourceEncoder.java48 Transformation<Bitmap> transformation = drawable.getFrameTransformation(); in encode() local
49 if (transformation instanceof UnitTransformation) { in encode()
62 …Resource<Bitmap> transformedResource = getTransformedFrame(currentFrame, transformation, drawable); in encode()
112 …te Resource<Bitmap> getTransformedFrame(Bitmap currentFrame, Transformation<Bitmap> transformation, in getTransformedFrame() argument
116 Resource<Bitmap> transformedResource = transformation.transform(bitmapResource, in getTransformedFrame()
/external/eigen/doc/
DTutorialGeometry.dox11 …- Projective or affine transformation matrices: see the Transform class. These are really matrices.
13 …rage, you can directly use the Transform::data() method to pass your transformation matrix to Open…
15 You can construct a Transform from an abstract transformation, like this:
58 N-D \ref TutorialGeoTransform "Affine transformation"</td><td>\code
80 Any of the above transformation types can be converted to any other types of the same nature,
95 …ass="top">top</a>\section TutorialGeoCommontransformationAPI Common API across transformation types
98 generic algorithms working on any kind of transformation representations:
103 <tr class="alt"><td>Apply the transformation to a vector</td><td>\code
105 <tr><td>Get the inverse of the transformation</td><td>\code
118 vector distinguish when the transformation is applied.
[all …]
/external/libpng/
DTODO7 cHRM transformation.
12 Add "grayscale->palette" transformation and "palette->grayscale" detection.
15 Complete sRGB transformation (presently it simply uses gamma=0.45455).
24 background and doing rgb-to-gray transformation.
/external/syslinux/com32/lib/libpng/
DTODO8 cHRM transformation.
10 Add "grayscale->palette" transformation and "palette->grayscale" detection.
13 Complete sRGB transformation (presently it simply uses gamma=0.45455).
23 background and doing rgb-to-gray transformation.
/external/glide/library/src/main/java/com/bumptech/glide/request/
DGenericRequest.java63 private Transformation<Z> transformation; field in GenericRequest
103 Transformation<Z> transformation, in obtain() argument
129 transformation, in obtain()
153 transformation = null; in recycle()
175 Transformation<Z> transformation, in init() argument
196 this.transformation = transformation; in init()
210 check("Transformation", transformation, "try .transform(UnitTransformation.get())"); in init()
421 …atus = engine.load(signature, width, height, dataFetcher, loadProvider, transformation, transcoder, in onSizeReady()
/external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
DCipherEncryptBenchmark.java41 Transformation transformation(); in transformation() method
67 Transformation tx = config.transformation(); in EncryptStrategy()
80 final int messageSize(String transformation) throws Exception { in messageSize() argument
81 … Cipher conscryptCipher = Cipher.getInstance(transformation, TestUtils.getConscryptProvider()); in messageSize()
/external/webrtc/webrtc/base/
Dstringutils.cc54 CharacterTransformation transformation) { in ascii_string_compare() argument
58 c1 = transformation(*s1); in ascii_string_compare()
62 c2 = transformation(*s2); in ascii_string_compare()
/external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/04_BasicTnL/
DBasicTnL.txt5 This training course consists of a demonstration of basic transformation and lighting.
8 This training course consists of a demonstration of basic transformation and lighting, growing on t…
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAnimationBridge.java20 public void applyTransformation(float interpolatedTime, Transformation transformation) { in applyTransformation() argument
23 ClassParameter.from(Transformation.class, transformation)); in applyTransformation()
/external/icu/icu4c/source/data/translit/
DHira_Kana.txt18 # roundtripping transformation.
22 # information-losing transformation and precludes
29 # losing transformation from Katakana to Hiragana.
136 # one-way information-losing transformation. We

12345678910>>...21