HomeSort by relevance Sort by last modified time
    Searched refs:features (Results 1 - 25 of 1213) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/system_wrappers/source/
cpu_features_android.c 11 #include <cpu-features.h>
  /external/harfbuzz_ng/src/
hb-aat-map.cc 39 feature_info_t *info = features.push();
48 feature_info_t *info = features.push();
56 /* Sort features and merge duplicates */
57 if (features.len)
59 features.qsort ();
61 for (unsigned int i = 1; i < features.len; i++)
62 if (features[i].type != features[j].type)
63 features[++j] = features[i]
    [all...]
hb-shape.h 46 const hb_feature_t *features,
52 const hb_feature_t *features,
  /external/skia/src/core/
SkCpu.h 57 uint32_t features = gCachedFeatures; local
63 features |= SSE1;
66 features |= SSE2;
69 features |= SSE3;
72 features |= SSSE3;
75 features |= SSE41;
78 features |= SSE42;
81 features |= AVX;
85 features |= AVX2;
92 features &= (SkCpu::SSE1 | SkCpu::SSE2 | SkCpu::SSE3 | SkCpu::SSSE3 | SkCpu::SSE41)
    [all...]
SkCpu.cpp 35 uint32_t features = 0; local
41 if (abcd[3] & (1<<25)) { features |= SkCpu:: SSE1; }
42 if (abcd[3] & (1<<26)) { features |= SkCpu:: SSE2; }
43 if (abcd[2] & (1<< 0)) { features |= SkCpu:: SSE3; }
44 if (abcd[2] & (1<< 9)) { features |= SkCpu::SSSE3; }
45 if (abcd[2] & (1<<19)) { features |= SkCpu::SSE41; }
46 if (abcd[2] & (1<<20)) { features |= SkCpu::SSE42; }
50 if (abcd[2] & (1<<28)) { features |= SkCpu:: AVX; }
51 if (abcd[2] & (1<<29)) { features |= SkCpu::F16C; }
52 if (abcd[2] & (1<<12)) { features |= SkCpu:: FMA;
80 uint32_t features = 0; local
97 uint32_t features = 0; local
110 uint32_t features = 0; local
    [all...]
  /external/skqp/src/core/
SkCpu.h 57 uint32_t features = gCachedFeatures; local
63 features |= SSE1;
66 features |= SSE2;
69 features |= SSE3;
72 features |= SSSE3;
75 features |= SSE41;
78 features |= SSE42;
81 features |= AVX;
85 features |= AVX2;
92 features &= (SkCpu::SSE1 | SkCpu::SSE2 | SkCpu::SSE3 | SkCpu::SSSE3 | SkCpu::SSE41)
    [all...]
SkCpu.cpp 35 uint32_t features = 0; local
41 if (abcd[3] & (1<<25)) { features |= SkCpu:: SSE1; }
42 if (abcd[3] & (1<<26)) { features |= SkCpu:: SSE2; }
43 if (abcd[2] & (1<< 0)) { features |= SkCpu:: SSE3; }
44 if (abcd[2] & (1<< 9)) { features |= SkCpu::SSSE3; }
45 if (abcd[2] & (1<<19)) { features |= SkCpu::SSE41; }
46 if (abcd[2] & (1<<20)) { features |= SkCpu::SSE42; }
50 if (abcd[2] & (1<<28)) { features |= SkCpu:: AVX; }
51 if (abcd[2] & (1<<29)) { features |= SkCpu::F16C; }
52 if (abcd[2] & (1<<12)) { features |= SkCpu:: FMA;
80 uint32_t features = 0; local
97 uint32_t features = 0; local
110 uint32_t features = 0; local
    [all...]
  /external/ipsec-tools/src/include-glibc/
glibc-bugs.h 9 #include <features.h>
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
FeatureList.java 19 private Feature[] features; field in class:FeatureList
24 features = new Feature[10];
30 if (featureCount >= features.length) {
31 Feature[] newFeatures = new Feature[features.length + 5];
33 System.arraycopy(features, 0, newFeatures, 0, features.length);
34 features = newFeatures;
37 features[featureCount++] = feature;
42 TaggedRecord.sort(features, featureCount);
45 features[i].setFeatureIndex(i)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
softplus_op.h 32 // features: any shape.
33 // activations: same shape as "features".
34 void operator()(const Device& d, typename TTypes<T>::ConstTensor features,
45 auto too_large = features > features.constant(-threshold);
48 auto too_small = features < features.constant(threshold);
49 auto features_exp = features.exp();
51 features, // softplus(x) ~= x for x large
53 (features_exp + features.constant(T(1))).log()))
    [all...]
softsign_op.h 32 // features: any shape.
33 // activations: same shape as "features".
34 void operator()(const Device& d, typename TTypes<T>::ConstTensor features,
37 features / (features.abs() + features.constant(T(1)));
47 // features: inputs that were passed to the Softsign op.
50 typename TTypes<T>::ConstTensor features,
53 gradients / (features.abs() + features.constant(T(1))).square()
    [all...]
  /external/tensorflow/tensorflow/contrib/gan/python/features/
__init__.py 15 """TFGAN features module.
25 # Collapse features into a single namespace.
27 from tensorflow.contrib.gan.python.features.python import clip_weights
28 from tensorflow.contrib.gan.python.features.python import conditioning_utils
29 from tensorflow.contrib.gan.python.features.python import random_tensor_pool
30 from tensorflow.contrib.gan.python.features.python import spectral_normalization
31 from tensorflow.contrib.gan.python.features.python import virtual_batchnorm
33 from tensorflow.contrib.gan.python.features.python.clip_weights import *
34 from tensorflow.contrib.gan.python.features.python.conditioning_utils import *
35 from tensorflow.contrib.gan.python.features.python.random_tensor_pool import
    [all...]
  /external/iperf3/src/
iperf_util.c 245 static char features[1024]; local
248 snprintf(features, sizeof(features), "Optional features available: ");
252 strncat(features, ", ",
253 sizeof(features) - strlen(features) - 1);
255 strncat(features, "CPU affinity setting",
256 sizeof(features) - strlen(features) - 1)
    [all...]
  /external/libpng/contrib/arm-neon/
android-ndk.c 23 * with an implementation of the Android ARM 'cpu-features' library. The code
27 #include <cpu-features.h>
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
BytecodeGenerator.java 9 <T> Class<? extends T> mockClass(MockFeatures<T> features);
  /external/webrtc/webrtc/common_audio/vad/
vad_filterbank.h 30 // The values are given in Q4 and written to |features|. Further, an approximate
38 // - features [o] : 10 * log10(energy in each frequency band), Q4.
42 size_t data_length, int16_t* features);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
domreg.py 32 def _good_enough(dom, features):
33 "_good_enough(dom, features) -> Return 1 if the dom offers the features"
34 for f,v in features:
39 def getDOMImplementation(name = None, features = ()):
40 """getDOMImplementation(name = None, features = ()) -> DOM implementation.
49 be found, raise an ImportError. The features list must be a sequence
64 # order, returning the one that has the required features
65 if isinstance(features, StringTypes):
66 features = _parse_feature_string(features)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
domreg.py 32 def _good_enough(dom, features):
33 "_good_enough(dom, features) -> Return 1 if the dom offers the features"
34 for f,v in features:
39 def getDOMImplementation(name = None, features = ()):
40 """getDOMImplementation(name = None, features = ()) -> DOM implementation.
49 be found, raise an ImportError. The features list must be a sequence
64 # order, returning the one that has the required features
65 if isinstance(features, StringTypes):
66 features = _parse_feature_string(features)
    [all...]
  /external/python/cpython2/Lib/xml/dom/
domreg.py 32 def _good_enough(dom, features):
33 "_good_enough(dom, features) -> Return 1 if the dom offers the features"
34 for f,v in features:
39 def getDOMImplementation(name = None, features = ()):
40 """getDOMImplementation(name = None, features = ()) -> DOM implementation.
49 be found, raise an ImportError. The features list must be a sequence
64 # order, returning the one that has the required features
65 if isinstance(features, StringTypes):
66 features = _parse_feature_string(features
    [all...]
  /external/python/cpython3/Lib/xml/dom/
domreg.py 32 def _good_enough(dom, features):
33 "_good_enough(dom, features) -> Return 1 if the dom offers the features"
34 for f,v in features:
39 def getDOMImplementation(name=None, features=()):
40 """getDOMImplementation(name = None, features = ()) -> DOM implementation.
49 be found, raise an ImportError. The features list must be a sequence
64 # order, returning the one that has the required features
65 if isinstance(features, str):
66 features = _parse_feature_string(features
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/
cpu_intrinsic_test.cc 36 absl::string_view features; member in struct:xla::cpu::__anon44363::IntrinsicTestSpec
60 string features{spec.features.data(), spec.features.size()};
61 if (!features.empty()) {
63 features.begin(), features.end(),
66 features = "";
70 (features.empty() ? "" : "_With"), features);
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListCreationTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.REJECTS_DUPLICATES_AT_CREATION;
20 import static com.google.common.collect.testing.features.CollectionSize.ONE;
21 import static com.google.common.collect.testing.features.CollectionSize.ZERO;
24 import com.google.common.collect.testing.features.CollectionFeature;
25 import com.google.common.collect.testing.features.CollectionSize;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXFactoryImpl.java 32 * The easiest way to test validity of features to set is to use
42 * This Map contains explicitly set features that can be succesfully
50 private HashMap features = null; field in class:SAXFactoryImpl
67 return SAXParserImpl.newInstance(features);
87 if (features == null) {
89 features = new LinkedHashMap();
91 features.put(name, value ? Boolean.TRUE : Boolean.FALSE);
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
saved_model_utils.py 34 def _colate_features_to_feeds_and_fetches(signature, features, graph,
56 for feature_key, feature_value in features.items():
90 features for the model to use while making the predictions. Values must
106 features = {_feature_keys.PredictionFeatures.TIMES: predict_times}
107 features.update(exogenous_features)
113 features=features,
116 output[_feature_keys.PredictionResults.TIMES] = features[
121 def cold_start_filter(signatures, session, features):
136 features: A dictionary mapping keys to Numpy arrays, with several possibl
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
CpuFeaturesTest.java 77 String features = getFieldFromCpuinfo("Features"); local
78 if (features == null)
81 return Arrays.asList(features.split("\\s"));
88 private static void assertInCpuinfo(List<String> features,
91 features.contains(feature));
94 private static void assertNotInCpuinfo(List<String> features,
97 features.contains(feature));
123 List<String> features = getFeaturesFromCpuinfo(); local
124 /* When /proc/cpuinfo is read by 32-bit ARM processes, the Features
143 List<String> features = getFeaturesFromCpuinfo(); local
    [all...]

Completed in 1051 milliseconds

1 2 3 4 5 6 7 8 91011>>