Home
last modified time | relevance | path

Searched +full:- +full:- +full:wrap +full:- +full:mode (Results 1 – 25 of 1082) sorted by relevance

12345678910>>...44

/external/pytorch/torch/csrc/jit/runtime/static/
Dte_wrapper.cpp17 // Use the width of an AVX-512 vector by default; this happens to work OK for
20 // contains FP divide, which is single-ported.
30 cg->call_raw(args); in call()
34 std::vector<ForPtr> loops = ln->getLoopStmtsFor(target); in optimizePointwise()
37 ln->splitWithTail(loops[0], width, &inner, &tail); in optimizePointwise()
38 ln->vectorize(inner); in optimizePointwise()
42 std::shared_ptr<TEWrapper> wrap, in wrapTECompute()
53 cg->cleanup_memory(); in wrapTECompute()
54 wrap->update(std::move(cg)); in wrapTECompute()
55 return wrap; in wrapTECompute()
[all …]
/external/zlib/
Dinflate.c1 /* inflate.c -- zlib decompression
2 * Copyright (C) 1995-2022 Mark Adler
10 * - First version -- complete rewrite of inflate to simplify code, avoid
16 * - Use pointers for available input and output checking in inffast.c
17 * - Remove input and output counters in inffast.c
18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
20 * - Unroll direct copy to three copies per loop in inffast.c
23 * - Change external routine names to reduce potential conflicts
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
[all …]
/external/trusty/arm-trusted-firmware/lib/zlib/
Dinflate.c1 /* inflate.c -- zlib decompression
2 * Copyright (C) 1995-2022 Mark Adler
10 * - First version -- complete rewrite of inflate to simplify code, avoid
16 * - Use pointers for available input and output checking in inffast.c
17 * - Remove input and output counters in inffast.c
18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
20 * - Unroll direct copy to three copies per loop in inffast.c
23 * - Change external routine names to reduce potential conflicts
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
[all …]
/external/freetype/src/gzip/
Dinflate.c1 /* inflate.c -- zlib decompression
2 * Copyright (C) 1995-2022 Mark Adler
10 * - First version -- complete rewrite of inflate to simplify code, avoid
16 * - Use pointers for available input and output checking in inffast.c
17 * - Remove input and output counters in inffast.c
18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
20 * - Unroll direct copy to three copies per loop in inffast.c
23 * - Change external routine names to reduce potential conflicts
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
[all …]
/external/zlib/contrib/optimizations/
Dinflate.c1 /* inflate.c -- zlib decompression
2 * Copyright (C) 1995-2022 Mark Adler
10 * - First version -- complete rewrite of inflate to simplify code, avoid
16 * - Use pointers for available input and output checking in inffast.c
17 * - Remove input and output counters in inffast.c
18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
20 * - Unroll direct copy to three copies per loop in inffast.c
23 * - Change external routine names to reduce potential conflicts
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
[all …]
/external/mbedtls/programs/psa/
Dkey_ladder_demo.c20 * - "generate": generate a random master key.
21 * - "wrap": derive a wrapping key from the last intermediate key,
22 * and use that key to encrypt-and-authenticate some data.
23 * - "unwrap": derive a wrapping key from the last intermediate key,
24 * and use that key to decrypt-and-authenticate some
25 * ciphertext created by wrap mode.
26 * - "save": save the last intermediate key so that it can be reused as
35 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
111 #define WRAPPING_KEY_SALT ((uint8_t *) "key_ladder_demo.wrap")
121 /* Type and size of the key used to wrap data. */
[all …]
/external/openthread/third_party/mbedtls/repo/programs/psa/
Dkey_ladder_demo.c20 * - "generate": generate a random master key.
21 * - "wrap": derive a wrapping key from the last intermediate key,
22 * and use that key to encrypt-and-authenticate some data.
23 * - "unwrap": derive a wrapping key from the last intermediate key,
24 * and use that key to decrypt-and-authenticate some
25 * ciphertext created by wrap mode.
26 * - "save": save the last intermediate key so that it can be reused as
35 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
111 #define WRAPPING_KEY_SALT ((uint8_t *) "key_ladder_demo.wrap")
121 /* Type and size of the key used to wrap data. */
[all …]
/external/mesa3d/docs/gallium/cso/
Dsampler.rst7 this state controls an individual texture unit's texel-sampling settings.
9 Texture coordinates are always treated as four-dimensional, and referred to
13 -------
16 How to wrap the S coordinate. One of PIPE_TEX_WRAP_*.
18 How to wrap the T coordinate. One of PIPE_TEX_WRAP_*.
20 How to wrap the R coordinate. One of PIPE_TEX_WRAP_*.
22 The wrap modes are:
24 * ``PIPE_TEX_WRAP_REPEAT``: Standard coord repeat/wrap-around mode.
31 texture wrap mode. Historically, this mode hasn't acted consistently across
34 nearest sampling mode.
[all …]
/external/boringssl/src/include/openssl/
Daes.h2 * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved.
39 // AES_set_encrypt_key configures |aeskey| to encrypt with the |bits|-bit key,
47 // AES_set_decrypt_key configures |aeskey| to decrypt with the |bits|-bit key,
68 // AES_ctr128_encrypt encrypts (or decrypts, it's the same in CTR mode) |len|
71 // in-place with |in| equal to |out|, but otherwise the buffers may not
81 // 16 byte block from |in| to |out|. This function may be called in-place with
89 // This function may be called in-place with |in| equal to |out|, but otherwise
96 // AES_ofb128_encrypt encrypts (or decrypts, it's the same in OFB mode) |len|
98 // first call. This function may be called in-place with |in| equal to |out|,
107 // first call. This function may be called in-place with |in| equal to |out|,
[all …]
/external/v4l-utils/utils/v4l2-ctl/
Dv4l2-ctl-tuner.cpp3 #include "v4l2-ctl.h"
11 static struct v4l2_hw_freq_seek freq_seek; /* freq-seek */
12 static double low, high; /* freq-seek frequency range */
13 static int mode = V4L2_TUNER_MODE_STEREO; /* set audio mode */ variable
18 " -F, --get-freq query the frequency [VIDIOC_G_FREQUENCY]\n" in tuner_usage()
19 " -f, --set-freq <freq>\n" in tuner_usage()
21 " -T, --get-tuner query the tuner settings [VIDIOC_G_TUNER]\n" in tuner_usage()
22 " -t, --set-tuner <mode>\n" in tuner_usage()
23 " set the audio mode of the tuner [VIDIOC_S_TUNER]\n" in tuner_usage()
25 " --tuner-index <idx> Use idx as tuner idx for tuner/modulator commands\n" in tuner_usage()
[all …]
/external/skia/src/gpu/ganesh/effects/
DGrTextureEffect.h4 * Use of this source code is governed by a BSD-style license that can be
37 // access texel (i-1) to i instead of i to (i+1), even if the weights should mean the clamped
43 // inset from the defined data boundary (for approx-fit textures that don't fill to the HW
45 // defined data. The filtering weight should be 0, which should be safe for non-floating-point
54 /** Make from a filter. The sampler will be configured with clamp mode. */
72 * Makes a texture effect that samples a subset of a texture. The wrap modes of the
80 * alwaysUseShaderTileMode is true then MakeSubset won't attempt to use HW wrap modes if the
93 * The same as above but also takes a 'domain' that specifies any known limit on the post-
109 * dimensions to determine the period of the wrap mode (for repeat and mirror). Once it computes
114 * sample result. If there is a known restriction on the post-matrix texture coords it can be
[all …]
/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/include/openssl/
Daes.h2 * Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved.
24 * openssl-core@openssl.org.
78 // AES_set_encrypt_key configures |aeskey| to encrypt with the |bits|-bit key,
86 // AES_set_decrypt_key configures |aeskey| to decrypt with the |bits|-bit key,
107 // AES_ctr128_encrypt encrypts (or decrypts, it's the same in CTR mode) |len|
110 // in-place with |in| equal to |out|, but otherwise the buffers may not
120 // 16 byte block from |in| to |out|. This function may be called in-place with
128 // This function may be called in-place with |in| equal to |out|, but otherwise
135 // AES_ofb128_encrypt encrypts (or decrypts, it's the same in OFB mode) |len|
137 // first call. This function may be called in-place with |in| equal to |out|,
[all …]
/external/cronet/tot/third_party/boringssl/src/include/openssl/
Daes.h2 * Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved.
24 * openssl-core@openssl.org.
78 // AES_set_encrypt_key configures |aeskey| to encrypt with the |bits|-bit key,
86 // AES_set_decrypt_key configures |aeskey| to decrypt with the |bits|-bit key,
107 // AES_ctr128_encrypt encrypts (or decrypts, it's the same in CTR mode) |len|
110 // in-place with |in| equal to |out|, but otherwise the buffers may not
120 // 16 byte block from |in| to |out|. This function may be called in-place with
128 // This function may be called in-place with |in| equal to |out|, but otherwise
135 // AES_ofb128_encrypt encrypts (or decrypts, it's the same in OFB mode) |len|
137 // first call. This function may be called in-place with |in| equal to |out|,
[all …]
/external/cronet/stable/third_party/boringssl/src/include/openssl/
Daes.h2 * Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved.
24 * openssl-core@openssl.org.
78 // AES_set_encrypt_key configures |aeskey| to encrypt with the |bits|-bit key,
86 // AES_set_decrypt_key configures |aeskey| to decrypt with the |bits|-bit key,
107 // AES_ctr128_encrypt encrypts (or decrypts, it's the same in CTR mode) |len|
110 // in-place with |in| equal to |out|, but otherwise the buffers may not
120 // 16 byte block from |in| to |out|. This function may be called in-place with
128 // This function may be called in-place with |in| equal to |out|, but otherwise
135 // AES_ofb128_encrypt encrypts (or decrypts, it's the same in OFB mode) |len|
137 // first call. This function may be called in-place with |in| equal to |out|,
[all …]
/external/tink/cc/hybrid/
Dhybrid_config_test.cc7 // http://www.apache.org/licenses/LICENSE-2.0
55 GTEST_SKIP() << "Not supported in FIPS-only mode"; in TEST_F()
78 // can wrap primitives.
81 GTEST_SKIP() << "Not supported in FIPS-only mode"; in TEST_F()
92 primitive_set->set_primary( in TEST_F()
94 ->AddPrimitive(absl::make_unique<DummyHybridEncrypt>("dummy"), in TEST_F()
99 auto wrapped = Registry::Wrap(std::move(primitive_set)); in TEST_F()
102 auto encryption_result = wrapped.value()->Encrypt("secret", ""); in TEST_F()
113 // can wrap primitives.
116 GTEST_SKIP() << "Not supported in FIPS-only mode"; in TEST_F()
[all …]
/external/mesa3d/src/gallium/drivers/r300/
Dr300_state_inlines.h4 * SPDX-License-Identifier: MIT
182 r300_translate_polygon_mode_front(unsigned mode) { in r300_translate_polygon_mode_front() argument
183 switch (mode) in r300_translate_polygon_mode_front()
193 fprintf(stderr, "r300: Bad polygon mode %i in %s\n", mode, in r300_translate_polygon_mode_front()
200 r300_translate_polygon_mode_back(unsigned mode) { in r300_translate_polygon_mode_back() argument
201 switch (mode) in r300_translate_polygon_mode_back()
211 fprintf(stderr, "r300: Bad polygon mode %i in %s\n", mode, in r300_translate_polygon_mode_back()
219 static inline uint32_t r300_translate_wrap(int wrap) in r300_translate_wrap() argument
221 switch (wrap) { in r300_translate_wrap()
239 fprintf(stderr, "r300: Unknown texture wrap %d", wrap); in r300_translate_wrap()
[all …]
/external/deqp/external/openglcts/modules/glesext/gpu_shader5/
DesextcGPUShader5TextureGatherOffset.hpp3 /*-------------------------------------------------------------------------
5 * -----------------------------
7 * Copyright (c) 2014-2016 The Khronos Group Inc.
13 * http://www.apache.org/licenses/LICENSE-2.0
24 */ /*-------------------------------------------------------------------*/
28 * \brief gpu_shader5 extension - texture gather offset tests (Test 9 and 10)
29 */ /*-------------------------------------------------------------------*/
292 * GL_REPEAT wrap mode.
304 * row and column number (x,y) -> (x,y,x,y)
336 * rest with some random float values in the range [-8.0..8.0].
[all …]
/external/libwebsockets/win32port/zlib/
Dinflate.c1 /* inflate.c -- zlib decompression
2 * Copyright (C) 1995-2010 Mark Adler
10 * - First version -- complete rewrite of inflate to simplify code, avoid
16 * - Use pointers for available input and output checking in inffast.c
17 * - Remove input and output counters in inffast.c
18 * - Change inffast.c entry and loop from avail_in >= 7 to >= 6
19 * - Remove unnecessary second byte pull from length extra in inffast.c
20 * - Unroll direct copy to three copies per loop in inffast.c
23 * - Change external routine names to reduce potential conflicts
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
[all …]
/external/tink/cc/experimental/pqcrypto/signature/
Dsignature_config_util_test.cc7 // http://www.apache.org/licenses/LICENSE-2.0
49 GTEST_SKIP() << "Not supported if FIPS-mode is used"; in TEST_F()
56 // can wrap primitives.
59 GTEST_SKIP() << "Not supported if FIPS-mode is used"; in TEST_F()
70 auto add_primitive = primitive_set->AddPrimitive( in TEST_F()
73 ASSERT_THAT(primitive_set->set_primary(*add_primitive), IsOk()); in TEST_F()
76 Registry::Wrap(std::move(primitive_set)); in TEST_F()
79 util::StatusOr<std::string> signature_result = (*wrapped)->Sign("message"); in TEST_F()
92 // can wrap primitives.
95 GTEST_SKIP() << "Not supported if FIPS-mode is used"; in TEST_F()
[all …]
/external/mesa3d/src/gallium/drivers/crocus/ci/
Dcrocus-g41-fails.txt1 KHR-GLES2.core.internalformat.texture2d.depth_component_unsigned_int_depth_component16,Fail
2 KHR-GLES2.core.internalformat.texture2d.depth_component_unsigned_int_depth_component24,Fail
3 KHR-GLES2.core.internalformat.texture2d.depth_component_unsigned_short_depth_component16,Fail
4 KHR-GLES2.core.internalformat.texture2d.rgb_float_rgb32f,Fail
5 KHR-GLES2.core.internalformat.texture2d.rgb_float_rgb32f_linear,Fail
6 KHR-GLES2.core.internalformat.texture2d.rgba_float_rgba32f,Fail
7 KHR-GLES2.core.internalformat.texture2d.rgba_float_rgba32f_linear,Fail
10 dEQP-GLES2.functional.clip_control.depth_mode_zero_to_one,Fail
13 dEQP-GLES2.functional.clipping.line.wide_line_clip_viewport_center,Fail
14 dEQP-GLES2.functional.clipping.line.wide_line_clip_viewport_corner,Fail
[all …]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dreactive_socket_service_base.hpp5 // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
54 // Per-descriptor data used by the reactor.
62 // Destroy all user-defined handler objects owned by the service.
68 // Move-construct a new socket implementation.
72 // Move-assign from another socket implementation.
100 // Determine whether the socket is at the out-of-band data mark.
132 // Gets the non-blocking mode of the socket.
138 // Sets the non-blocking mode of the socket.
140 bool mode, asio::error_code& ec) in non_blocking() argument
142 socket_ops::set_user_non_blocking(impl.socket_, impl.state_, mode, ec); in non_blocking()
[all …]
/external/rust/android-crates-io/crates/coset/src/iana/
Dmod.rs7 // http://www.apache.org/licenses/LICENSE-2.0
17 //! Enumerations for IANA-managed values.
20 //! - <https://www.iana.org/assignments/cose/cose.xhtml>
21 //! - <https://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml>
22 //! - <https://www.iana.org/assignments/core-parameters/core-parameters.xhtml#content-formats>
23 //! - <https://www.iana.org/assignments/cwt/cwt.xhtml>
30 fn from_i64(i: i64) -> Option<Self>; in from_i64()
31 fn to_i64(&self) -> i64; in to_i64()
36 fn is_private(i: i64) -> bool; in is_private()
50 fn from_i64(i: i64) -> Option<Self> {
[all …]
/external/AFLplusplus/dictionaries/
Dcss.dict6 "::first-letter"
7 "::first-line"
16 ":first-child"
17 ":first-of-type"
20 ":in-range"
24 ":last-child"
25 ":last-of-type"
28 ":nth-child("
29 ":nth-last-child("
30 ":nth-last-of-type("
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DDESedeWrapEngine.java14 // Android-changed: Use Android digests
20 * Wrap keys according to
26 * <li>if you are using this to wrap triple-des keys you need to set the
27 * parity bits on the key and, if it's a two-key triple-des key, pad it
57 // Android-changed: Use Android digests
93 // Hm, we have no IV but we want to wrap ?!? in init()
133 * Method wrap
140 public byte[] wrap(byte[] in, int inOff, int inLen) in wrap() method in DESedeWrapEngine
160 // Encrypt WKCKS in CBC mode using KEK as the key and IV as the in wrap()
188 // Encrypt TEMP3 in CBC mode using the KEK and an initialization vector in wrap()
[all …]
/external/tink/cc/experimental/pqcrypto/kem/
Dcecpq2_hybrid_config_test.cc7 // http://www.apache.org/licenses/LICENSE-2.0
54 GTEST_SKIP() << "Not supported in FIPS-only mode"; in TEST_F()
77 // can wrap primitives
80 GTEST_SKIP() << "Not supported in FIPS-only mode"; in TEST_F()
91 primitive_set->set_primary( in TEST_F()
93 ->AddPrimitive(absl::make_unique<DummyHybridEncrypt>("dummy"), in TEST_F()
98 auto wrapped = Registry::Wrap(std::move(primitive_set)); in TEST_F()
101 auto encryption_result = wrapped.value()->Encrypt("secret", ""); in TEST_F()
112 // can wrap primitives
115 GTEST_SKIP() << "Not supported in FIPS-only mode"; in TEST_F()
[all …]

12345678910>>...44