HomeSort by relevance Sort by last modified time
    Searched defs:idx (Results 101 - 125 of 2369) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/tests/store_buffering/
test.c 14 int idx; local
17 idx = srcu_read_lock(&ss);
23 srcu_read_unlock(&ss, idx);
24 idx = srcu_read_lock(&ss);
29 srcu_read_unlock(&ss, idx);
  /external/llvm/lib/Support/
DeltaAlgorithm.cpp 33 unsigned idx = 0, N = S.size() / 2; local
35 ie = S.end(); it != ie; ++it, ++idx)
36 ((idx < N) ? LHS : RHS).insert(*it);
  /external/ltp/testcases/kernel/fs/ftest/
libftest.c 32 int idx, nout, i; local
37 idx = 0;
44 if (i == idx + 1)
46 buf[idx] & 0xff);
48 tst_resm(TINFO, "\t%d*%" PRIx32 "x, ", i - idx,
49 buf[idx] & 0xff);
50 idx = i;
60 if (i == idx + 1)
61 tst_resm(TINFO, "\t%" PRIx32 "x", buf[idx] & 0xff);
63 tst_resm(TINFO, "\t%d*%" PRIx32 "x", i - idx, buf[idx])
103 int idx, nout, i; local
    [all...]
  /external/mesa3d/src/compiler/glsl/
link_uniform_block_active_visitor.cpp 113 const unsigned idx = c->get_uint_component(0); local
117 if (ub_array->array_elements[i] == idx)
129 ub_array->array_elements[ub_array->num_array_elements] = idx;
lower_vector_insert.cpp 68 ir_constant *const idx = expr->operands[2]->constant_expression_value(); local
69 if (idx != NULL) {
81 const int mask = 1 << idx->value.i[0];
  /external/mesa3d/src/compiler/glsl/tests/
uniform_initializer_utils.cpp 51 const unsigned idx = data_size + i; local
53 if (storage[idx].u != 0xBADDC0DE)
55 << "storage[" << idx << "].u = " << storage[idx].u
82 const unsigned idx = (i + data_index_base) % ARRAY_SIZE(values); local
88 data.i[i] = values[idx];
91 data.f[i] = float(values[idx]);
94 data.b[i] = bool(values[idx]);
97 data.d[i] = double(values[idx]);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_decompose_tmp.h 50 unsigned idx[6], i; local
65 idx[0] = GET_ELT(i);
66 POINT(idx[0]);
73 idx[0] = GET_ELT(i);
74 idx[1] = GET_ELT(i + 1);
75 LINE(flags, idx[0], idx[1]);
83 idx[1] = GET_ELT(0);
84 idx[2] = idx[1]
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_draw.h 115 struct pipe_index_buffer *idx = &batch->ctx->indexbuf; local
117 assert(!idx->user_buffer);
119 idx_buffer = idx->buffer;
120 idx_type = fd4_size2indextype(idx->index_size);
121 idx_size = idx->index_size * info->count;
122 idx_offset = idx->offset + (info->start * idx->index_size);
  /external/mesa3d/src/mapi/glapi/
glapi_entrypoint.c 203 int idx; local
230 idx = 7;
236 idx = 3;
238 code[idx + 0] = template[idx + 0];
239 __glapi_sparc_icache_flush(&code[idx - 1]);
240 code[idx + 1] = template[idx + 1];
241 code[idx + 2] = template[idx + 2]
    [all...]
  /external/mesa3d/src/mesa/program/
prog_parameter_layout.c 166 const int idx = inst->SrcReg[i].Base.Index; local
182 p = & state->prog->Parameters->Parameters[idx];
187 state->prog->Parameters->ParameterValues[idx];
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFDebugAbbrev.cpp 51 uint32_t idx = abbrCode - IdxOffset; local
52 if (idx < Decls.size())
53 return &Decls[idx];
  /external/swiftshader/third_party/LLVM/lib/Support/
DeltaAlgorithm.cpp 33 unsigned idx = 0, N = S.size() / 2; local
35 ie = S.end(); it != ie; ++it, ++idx)
36 ((idx < N) ? LHS : RHS).insert(*it);
  /external/tensorflow/tensorflow/contrib/lite/kernels/
embedding_lookup.cc 81 int idx = lookup->data.i32[i]; local
82 if (idx >= row_size || idx < 0) {
87 value->data.raw + idx * row_bytes, row_bytes);
  /external/tensorflow/tensorflow/core/kernels/data/
zip_dataset_op.cc 100 size_t idx = 0; local
103 strings::StrCat(params.prefix, "[", idx++, "]")));
  /external/tensorflow/tensorflow/core/lib/random/
distribution_sampler.cc 81 int idx = high[i]; local
82 set_prob(idx, 1.0);
84 set_alt(idx, idx);
87 int idx = low[i]; local
88 set_prob(idx, 1.0);
90 set_alt(idx, idx);
distribution_sampler.h 55 int idx = rand->Uniform(num_); local
56 if (r < prob(idx)) return idx;
58 DCHECK_NE(-1, alt(idx));
59 return alt(idx);
65 float prob(int idx) const {
66 DCHECK_LT(idx, num_);
67 return data_[idx].first;
70 int alt(int idx) const {
71 DCHECK_LT(idx, num_)
    [all...]
  /external/testng/src/main/java/org/testng/junit/
JUnit4TestMethod.java 26 int idx = method.indexOf('['); local
27 if (idx != -1) {
28 method = method.substring(0, idx);
  /external/toybox/toys/net/
rfkill.c 34 int fd, tvar, idx = -1, tid = RFKILL_TYPE_ALL; local
45 int idx; member in struct:arglist
55 if (i == ARRAY_LEN(rftypes)) idx = atolx_range(*optargs, 0, INT_MAX);
56 else tid = rftypes[i].idx;
65 if (idx >= 0) {
66 rfevent.idx = idx;
79 if ((tid > 0 && tid != rfevent.type) || (idx != -1 && idx != rfevent.idx))
    [all...]
  /external/toybox/toys/posix/
uudecode.c 29 int ifd = 0, ofd, idx = 0, m = m; local
35 while (!idx) {
39 sscanf(line, class[m], mode, &idx);
40 if (idx) break;
45 else ofd = xcreate(TT.o ? TT.o : line+idx, O_WRONLY|O_CREAT|O_TRUNC,
  /external/webrtc/webrtc/modules/video_coding/test/
test_util.cc 41 std::string::size_type idx; local
42 idx = filename.rfind('.');
44 if (idx != std::string::npos) {
45 *basename = filename.substr(0, idx);
46 *extension = filename.substr(idx + 1);
  /external/webrtc/webrtc/video/
payload_router.cc 84 int idx = 0; local
86 rtp_module->SetTargetSendBitrate(stream_bitrates[idx++]);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode_inline.h 25 Int idx, run, level, j; local
28 idx = 0;
53 RLB->level[idx] = -level;
54 RLB->s[idx] = 1;
55 RLB->run[idx] = run;
57 idx++;
61 RLB->level[idx] = level;
62 RLB->s[idx] = 0;
63 RLB->run[idx] = run;
65 idx++
116 Int idx, run, level, j; local
230 Int idx, run, level = 0, j; local
    [all...]
  /frameworks/base/rs/java/android/renderscript/
ProgramFragment.java 67 int idx = 0; local
70 tmp[idx++] = ProgramParam.INPUT.mID;
71 tmp[idx++] = mInputs[i].getID(mRS);
74 tmp[idx++] = ProgramParam.OUTPUT.mID;
75 tmp[idx++] = mOutputs[i].getID(mRS);
78 tmp[idx++] = ProgramParam.CONSTANT.mID;
79 tmp[idx++] = mConstants[i].getID(mRS);
82 tmp[idx++] = ProgramParam.TEXTURE_TYPE.mID;
83 tmp[idx++] = mTextureTypes[i].mID;
ProgramVertex.java 127 int idx = 0; local
130 tmp[idx++] = ProgramParam.INPUT.mID;
131 tmp[idx++] = mInputs[i].getID(mRS);
134 tmp[idx++] = ProgramParam.OUTPUT.mID;
135 tmp[idx++] = mOutputs[i].getID(mRS);
138 tmp[idx++] = ProgramParam.CONSTANT.mID;
139 tmp[idx++] = mConstants[i].getID(mRS);
142 tmp[idx++] = ProgramParam.TEXTURE_TYPE.mID;
143 tmp[idx++] = mTextureTypes[i].mID;
  /frameworks/base/tools/aapt/
AaptXml.cpp 81 ssize_t idx = tree.indexOfAttribute(ns, attr); local
82 if (idx < 0) {
85 return getStringAttributeAtIndex(tree, idx, outError);
89 ssize_t idx = indexOfAttribute(tree, attrRes); local
90 if (idx < 0) {
93 return getStringAttributeAtIndex(tree, idx, outError);
98 ssize_t idx = indexOfAttribute(tree, attrRes); local
99 if (idx < 0) {
104 if (tree.getAttributeValue(idx, &value) == BAD_TYPE) {
114 const char16_t* str = tree.getAttributeStringValue(idx, &len)
141 ssize_t idx = tree.indexOfAttribute(ns, attr); local
150 ssize_t idx = indexOfAttribute(tree, attrRes); local
159 ssize_t idx = indexOfAttribute(tree, attrRes); local
181 ssize_t idx = indexOfAttribute(tree, attrRes); local
    [all...]

Completed in 500 milliseconds

1 2 3 45 6 7 8 91011>>