HomeSort by relevance Sort by last modified time
    Searched defs:range_max (Results 1 - 5 of 5) sorted by null

  /external/drm_hwcomposer/
drmproperty.cpp 115 std::tuple<int, uint64_t> DrmProperty::range_max() const { function in class:android::DrmProperty
  /external/tensorflow/tensorflow/core/kernels/
candidate_sampler_ops.cc 117 int64 range_max; local
118 OP_REQUIRES_OK(context, context->GetAttr("range_max", &range_max));
119 set_sampler(new RangeSamplerType(range_max));
141 int64 range_max; local
142 OP_REQUIRES_OK(context, context->GetAttr("num_sampled", &range_max));
143 set_sampler(new AllSampler(range_max));
154 int64 range_max; local
155 OP_REQUIRES_OK(context, context->GetAttr("range_max", &range_max));
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_framebuffer.c 397 float range_max = 1.0; local
576 range_max = viewport->scale[2] * 1.0f + viewport->translate[2];
582 if (range_min > range_max) {
585 range_min = range_max;
586 range_max = range_tmp;
596 range_max = 0.5f * viewport->scale[2] + 0.5f + viewport->translate[2];
683 svga->state.hw_clear.depthrange.zmax != range_max)
689 ret = SVGA3D_SetZRange(svga->swc, range_min, range_max );
694 svga->state.hw_clear.depthrange.zmax = range_max;
705 vp.maxDepth = range_max;
    [all...]
  /external/ltp/lib/
random_range.c 63 * range can be extracted from the array using the range_min(), range_max(),
90 * range_min(), range_max(), and range_mult() to access
243 int range_max(char *rbuf, int r) function
  /external/v8/src/compiler/
types.cc 791 double range_max = range.Max(); local
798 if (range_min <= bitset_min && range_max >= bitset_max) {
806 if (bitset_max > range_max) {
807 range_max = bitset_max;
809 return Type::Range(range_min, range_max, zone);
    [all...]

Completed in 3437 milliseconds