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

1 2 3

  /external/jemalloc/test/unit/
size_classes.c 29 szind_t index, max_index; local
32 max_index = size2index(max_size_class);
34 for (index = 0, size_class = index2size(index); index < max_index ||
37 assert_true(index < max_index,
  /external/mesa3d/src/gallium/auxiliary/util/
u_draw.c 39 * all vertex lookups need to be clamped to 0..max_index-1 to prevent
52 unsigned max_index; local
55 max_index = ~0U - 1;
107 max_index = MIN2(max_index, buffer_max_index);
125 return max_index + 1;
  /external/tensorflow/tensorflow/cc/gradients/
nn_grad_test.cc 80 int32 max_index = 0; local
82 if (tensor_flat(i) > tensor_flat(max_index)) {
83 max_index = i;
86 tensor_flat(max_index) += 1e-2;
  /device/google/cuttlefish_common/common/vsoc/lib/
region_view.cpp 138 const size_t max_index = (1 << table.num_nodes_lg2) - 1; local
145 size_t hash = (offset >> 2) & max_index;
163 hash = (hash + 1) & max_index;
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe.c 197 #define GET_ELT(idx) (MIN2(elts[idx], max_index))
208 unsigned max_index
245 unsigned max_index = 0x0, i; local
249 if (index > max_index)
250 max_index = index;
252 if (max_index >= vert_info->count) {
253 debug_printf("%s: max_index (%u) outside vertex buffer (%u)\n",
255 max_index,
draw_pt_vsplit_tmp.h 32 * Fetch all elements in [min_index, max_index] with bias, and use the
42 const unsigned max_index = draw->pt.user.max_index; local
63 if (idx < min_index || idx > max_index) {
76 if (max_index - min_index > icount - 1)
89 fetch_count = max_index - min_index + 1;
100 if (idx < min_index || idx > max_index) {
110 if (idx < min_index || idx > max_index) {
  /external/mesa3d/src/gallium/drivers/svga/
svga_swtnl_private.h 77 ushort max_index; member in struct:svga_vbuf_render
svga_draw_private.h 149 unsigned max_index[QSZ]; member in struct:draw_cmd
228 unsigned max_index,
238 unsigned max_index,
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qir_lower_uniforms.c 138 uint32_t max_index = 0; local
145 max_index = index;
149 struct qreg unif = qir_reg(QFILE_UNIF, max_index);
182 inst->src[i].index == max_index) {
vc4_draw.c 184 uint32_t max_index = 0xffff; local
206 max_index = MIN2(max_index,
244 vc4->max_index = max_index;
368 cl_u32(&bcl, vc4->max_index);
vc4_cl_dump.c 172 uint32_t *max_index = cl + offset + 9; local
183 offset + 9, hw_offset + 9, *max_index);
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_sol.c 249 unsigned max_index local
258 OUT_BATCH(max_index);
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
dynamic_stitch_op.cc 108 int max_index = -1; variable
111 max_index = std::max(max_index, indices[input_num].Get<int>({i}));
114 int number_of_indices = max_index + 1;
  /external/tensorflow/tensorflow/core/ops/
data_flow_ops.cc 96 int32 max_index = 0; local
126 if (indices[i] > max_index) {
127 max_index = indices[i];
134 all_indices_constant ? c->MakeDim(max_index + 1) : c->UnknownDim());
    [all...]
  /device/google/cuttlefish_common/common/libs/fs/
shared_fd.cpp 35 void MarkAll(const SharedFDSet& input, fd_set* dest, int* max_index) {
38 (*it)->Set(dest, max_index);
121 void FileInstance::Set(fd_set* dest, int* max_index) const {
125 if (fd_ >= *max_index) {
126 *max_index = fd_ + 1;
133 int max_index = 0; local
137 MarkAll(*read_set, &readfds, &max_index);
142 MarkAll(*write_set, &writefds, &max_index);
147 MarkAll(*error_set, &errorfds, &max_index);
151 select(max_index, &readfds, &writefds, &errorfds, timeout))
    [all...]
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
test_VIDIOC_ENUM_FRAMESIZES.c 203 __u32 max_index; local
221 max_index = i - 1;
223 i = max_index + 1;
238 if (max_index < i) {
255 if (max_index < i) {
272 if (max_index < i) {
  /external/mesa3d/src/mesa/vbo/
vbo_primitive_restart.c 70 GLuint max_index; member in struct:sub_primitive
106 sub_prims[scan_num].max_index = 0; \
116 sub_prims[scan_num].max_index = 0; \
123 UPDATE_MAX2(sub_prims[scan_num].max_index, scan_index); \
253 GL_TRUE, sub_prim->min_index, sub_prim->max_index,
vbo_split_inplace.c 50 GLuint max_index; member in struct:split_context
76 ib.count = split->max_index - split->min_index + 1;
85 assert(split->max_index >= split->min_index);
96 split->max_index,
104 split->max_index = 0;
125 split->max_index = MAX2(split->max_index, prim->start + prim->count - 1);
137 (prim->start < split->max_index &&
138 split->max_index - prim->start >= split->limit))
270 GLuint max_index,
    [all...]
  /external/vixl/test/
test-invalset.cc 193 int max_index = 100 * kNPreallocatedElements; local
194 for (int i = 0; i <= max_index; i++) {
199 VIXL_CHECK(set.GetMinElement() == Obj(-max_index, max_index));
203 VIXL_CHECK(set.GetMinElement() == Obj(-max_index, max_index));
205 VIXL_CHECK(set.GetMinElement() == Obj(-(max_index - 2), max_index - 2));
  /external/mesa3d/src/gallium/drivers/vc4/kernel/
vc4_drv.h 68 uint32_t max_index; member in struct:vc4_exec_info::vc4_shader_state
  /external/tensorflow/tensorflow/core/kernels/
dynamic_stitch_op.cc 83 int32 max_index = -1; local
91 max_index = std::max(m(), max_index);
98 *first_dim_size = max_index + 1;
  /external/tensorflow/tensorflow/tools/graph_transforms/
freeze_requantization_ranges.cc 163 int max_index = local
165 if (max_index > (maxs.size() - 1)) {
166 max_index = maxs.size() - 1;
169 const float max = maxs[max_index];
  /external/v8/src/interpreter/
constant-array-builder.h 165 inline size_t max_index() const { return start_index_ + capacity() - 1; } function in struct:v8::internal::interpreter::BASE_EMBEDDED::final
  /external/webrtc/webrtc/modules/audio_coding/neteq/
dsp_helper.cc 106 size_t max_index = 0; local
121 max_index = std::min(data_length - 1, peak_index[i] + 2);
145 sizeof(data[0]) * (max_index - min_index + 1));
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 44 Index max_index = (std::size_t(1) << (8 * sizeof(Index) - 1)) - 1; // assume Index is signed local
46 : (rows > max_index / cols);
    [all...]

Completed in 765 milliseconds

1 2 3