HomeSort by relevance Sort by last modified time
    Searched defs:highest (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/tensorflow/tensorflow/core/kernels/
quantized_pooling_ops.cc 76 const int32 highest = static_cast<int32>(Eigen::NumTraits<T>::highest()); variable
91 .cwiseMin(highest)
reference_gemm.h 66 const int32 highest = static_cast<int32>(Eigen::NumTraits<T3>::highest()); local
83 if (output > highest) {
84 output = highest;
quantization_utils.h 76 static_cast<int64>(Eigen::NumTraits<T>::highest());
113 const int64 highest = static_cast<int64>(Eigen::NumTraits<T>::highest()); local
116 (range_max - range_min) / (highest - lowest);
129 const int64 c_highest = static_cast<int64>(Eigen::NumTraits<T3>::highest());
189 // Casting QInt32's lowest or highest to a float gives a float that can't be
198 static_cast<float>(Eigen::NumTraits<T>::highest()), +2.147483520e+09f);
298 static_cast<int64>(Eigen::NumTraits<qint32>::highest());
625 static_cast<int64>(Eigen::NumTraits<qint32>::highest());
    [all...]
quantized_conv_ops.cc 63 const int32 highest = static_cast<int32>(Eigen::NumTraits<T3>::highest()); local
174 const int32 top_clamped_output = std::min(output, highest);
  /frameworks/compile/mclinker/lib/Support/
TargetRegistry.cpp 36 unsigned int highest = 0; local
41 if (best == NULL || highest < quality) {
42 highest = quality;
45 } else if (highest == quality) {
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
module.cpp 129 uint32_t highest = 0; local
132 [&highest](const Instruction* inst) {
135 highest = std::max(highest, operand.words[0]);
141 return highest + 1;
  /external/elfutils/libdwfl/
segment.c 157 int highest = -1; local
222 if (resized && idx - 1 >= highest)
227 highest = idx - 1;
dwfl_module_getdwarf.c 465 So we consider the highest section end, which still matches up. */
467 GElf_Addr highest; local
469 highest = 0;
481 sh->sh_addr, sh->sh_size, &highest);
483 if (highest > mod->main.vaddr)
485 mod->main.address_sync = highest;
487 highest = 0;
494 (*s32)[i].sh_size, &highest);
502 (*s64)[i].sh_size, &highest);
505 if (highest > file->vaddr
    [all...]
  /external/mesa3d/src/intel/vulkan/tests/
block_pool_no_free.c 79 int highest = -1; local
81 /* First, we find which thread has the highest next element */
100 /* That next element had better be higher than the previous highest */
101 assert(blocks[max_thread_idx][next[max_thread_idx]] > highest);
103 highest = blocks[max_thread_idx][next[max_thread_idx]];
state_pool_no_free.c 80 int highest = -1; local
82 /* First, we find which thread has the highest next element */
101 /* That next element had better be higher than the previous highest */
102 assert(jobs[max_thread_idx].offsets[next[max_thread_idx]] > highest);
104 highest = jobs[max_thread_idx].offsets[next[max_thread_idx]];
  /external/tensorflow/tensorflow/core/framework/
numeric_types.h 69 static EIGEN_STRONG_INLINE tensorflow::bfloat16 highest() { function in struct:Eigen::NumTraits
70 return FloatToBFloat16(NumTraits<float>::highest());
  /frameworks/av/media/libmedia/
CharacterEncodingDetector.cpp 89 int highest = 0; local
122 ucma, matches, &goodmatch, &highest);
124 ALOGV("goodmatch: %s, highest: %d", goodmatch ? "true" : "false", highest);
125 if (!goodmatch && (highest < 15 || strlen(buf) < 20)) {
150 ucma, matches, &goodmatch, &highest);
151 if (!goodmatch && highest <= 15) {
183 if (!goodmatch && highest < 0) {
193 if (goodmatchSingle || highestSingle > highest)
292 * - pick the highest matc
426 int highest = newconfidence[0]; local
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorIndexList.h 80 EIGEN_DEVICE_FUNC static inline Real highest() { return n; } function in struct:Eigen::NumTraits
  /external/syslinux/gpxe/src/drivers/net/
b44.c 89 struct memory_region *highest = NULL; local
92 highest = &memmap.regions[memmap.count - 1];
94 return (highest->end < limit);
  /frameworks/base/services/core/java/com/android/server/wm/
WindowToken.java 238 int highest = -1; local
242 if (wLayer > highest) {
243 highest = wLayer;
246 return highest;
WindowState.java 3911 int highest = mWinAnimator.mAnimLayer; local
    [all...]
  /external/eigen/Eigen/src/Core/arch/CUDA/
Half.h 534 EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE Eigen::half highest() { function in struct:Eigen::NumTraits
  /external/ltp/testcases/kernel/fs/fsx-linux/
fsx-linux.c 519 int highest = num_test_files - 1; local
522 len = snprintf(&dummy, 0, "%u ", highest);
533 max_tf_len = snprintf(tf_buf, len, "%u ", highest);
  /external/selinux/libsemanage/src/
direct_api.c 2179 semanage_module_info_t *highest = NULL; local
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
srconv.c 1220 unsigned int *highest = (unsigned *) nints (p->nsections); local
1235 highest[i] = 0;
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvoiceengine.cc 2080 int highest = 0; local
    [all...]
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 954 int highest = mItemTops[nextCol]; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 3122 unsigned highest = ((1U << mode->bitdepth) - 1U); \/*highest possible value for this bit depth*\/ local
3240 unsigned highest = ((1U << mode->bitdepth) - 1U); \/*highest possible value for this bit depth*\/ local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/26.2.0-alpha16/
lint-checks-26.2.0-alpha16.jar 

Completed in 835 milliseconds

1 2 3