HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 226 - 250 of 4325) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
armv8-a+rdma.s 25 .irp idx, 0, 1, 2, 3
26 scalar_inst \inst s16 \reg \idx
30 .irp idx, 0, 1
31 scalar_inst \inst s32 \reg \idx
49 .irp idx, 0, 1, 2, 3
50 scalar_inst \inst s16 \reg \idx
54 .irp idx, 0, 1
55 scalar_inst \inst s32 \reg \idx
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArray.java 82 * @param idx {@code >= 0, < getMaxLocals();} which local
83 * @param type {@code non-null;} new type for the local at {@code idx}
85 public abstract void set(int idx, TypeBearer type);
100 * @param idx {@code >= 0, < getMaxLocals();} which local
102 public abstract void invalidate(int idx);
108 * @param idx {@code >= 0, < getMaxLocals();} which local
111 public abstract TypeBearer getOrNull(int idx);
118 * @param idx {@code >= 0, < getMaxLocals();} which local
120 * @throws SimException thrown if {@code idx} is valid, but
123 public abstract TypeBearer get(int idx);
    [all...]
  /external/compiler-rt/lib/tsan/benchmarks/
mini_bench_local.cc 12 void Run(int idx) {
14 a[i + idx * n] = i;
18 long idx = (long)arg; local
19 printf("Thread %ld started\n", idx);
21 Run(idx);
22 printf("Thread %ld done\n", idx);
  /external/libdrm/etnaviv/
etnaviv_cmd_stream.c 132 uint32_t idx; local
134 idx = APPEND(&priv->submit, bos);
135 idx = APPEND(priv, bos);
137 priv->submit.bos[idx].flags = 0;
138 priv->submit.bos[idx].handle = bo->handle;
140 priv->bos[idx] = etna_bo_ref(bo);
142 return idx;
145 /* add (if needed) bo, return idx: */
150 uint32_t idx; local
155 idx = append_bo(stream, bo)
232 uint32_t idx = APPEND(&priv->submit, relocs); local
    [all...]
  /external/turbine/java/com/google/turbine/parse/
UnicodeEscapePreprocessor.java 29 private int idx = 0; field in class:UnicodeEscapePreprocessor
40 return idx - 1;
45 return idx >= input.length();
68 idx--;
130 ch = done() ? ASCII_SUB : input.charAt(idx);
131 idx++;
  /system/core/libcutils/tests/
fs_config.cpp 71 for (size_t idx = 0; idx < paths.size(); ++idx) {
73 std::string path(paths[idx]);
75 for (second = idx + 1; second < paths.size(); ++second) {
77 GTEST_LOG_(ERROR) << "duplicate paths in " << config_name << ": " << paths[idx];
90 << paths[idx] << " and " << paths[second]
107 GTEST_LOG_(ERROR) << "replace path in " << config_name << ": " << paths[idx]
124 for (size_t idx = 0; paths[idx].prefix; ++idx)
    [all...]
  /art/libartbase/base/
bit_string.h 131 * "ABCDE...K" := [A,B,C,D,E, ... K] + [0]*(N-idx(K)) s.t. N >= K.
153 size_t idx = 0; local
155 while (idx < position && idx < kCapacity) {
156 sum += kBitSizeAtPosition[idx];
157 ++idx;
182 BitStringChar operator[](size_t idx) const {
183 DCHECK_LT(idx, kCapacity);
185 StorageType data = BitFieldExtract(storage_, GetLsbForPosition(idx), kBitSizeAtPosition[idx]);
    [all...]
  /external/elfutils/src/
elflint.c 97 GElf_Shdr *shdr, int idx);
314 section_name (Ebl *ebl, int idx)
320 if ((unsigned int) idx > shnum)
323 shdr = gelf_getshdr (elf_getscn (ebl->elf, idx), &shdr_mem);
533 /* Check that there is a section group section with index < IDX which
534 contains section IDX and that there is exactly one. */
536 check_scn_group (Ebl *ebl, int idx)
538 if (scnref[idx] == 0)
544 for (cnt = idx + 1; cnt < shnum; ++cnt)
567 if (grpdata[inner] == (Elf32_Word) idx)
1276 idx, section_name (ebl, idx)); local
1649 shdr->sh_link, idx, section_name (ebl, idx)); local
    [all...]
  /external/python/cpython3/Modules/
_json.c 87 scan_once_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr);
89 _build_rval_index_tuple(PyObject *rval, Py_ssize_t idx);
346 raise_stop_iteration(Py_ssize_t idx)
348 PyObject *value = PyLong_FromSsize_t(idx);
356 _build_rval_index_tuple(PyObject *rval, Py_ssize_t idx) {
357 /* return (rval, idx) tuple, stealing reference to rval */
361 steal a reference to rval, returns (rval, idx)
366 pyidx = PyLong_FromSsize_t(idx);
699 _parse_object_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) {
701 idx is the index of the first character after the opening curly brace
950 Py_ssize_t idx = start; local
1178 Py_ssize_t idx; local
1603 Py_ssize_t idx; local
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
listdiff_op_test.py 37 def _testListDiff(self, x, y, out, idx):
52 self.assertAllEqual(tf_idx, idx)
60 idx = [2, 3]
61 self._testListDiff(x, y, out, idx)
67 idx = [0, 2, 3]
68 self._testListDiff(x, y, out, idx)
74 idx = [0, 2]
75 self._testListDiff(x, y, out, idx)
81 idx = [0, 3, 5, 6, 7]
82 self._testListDiff(x, y, out, idx)
    [all...]
  /external/mesa3d/src/gallium/drivers/trace/
tr_dump.h 140 size_t idx; \
142 for(idx = 0; idx < (_size); ++idx) { \
144 trace_dump_##_type((_obj)[idx]); \
156 size_t idx; \
158 for(idx = 0; idx < (_size); ++idx) { \
160 trace_dump_##_type(&(_obj)[idx]); \
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
StockSource.java 87 int idx = Integer.valueOf(data.id); local
88 is = mResources.openRawResource(PHOTOS[idx]);
99 int idx = Integer.valueOf(current.id); local
100 idx = (idx + 1) % PHOTOS.length;
101 return mImageCache.get(idx);
106 int idx = Integer.valueOf(current.id); local
107 idx = (PHOTOS.length + idx - 1) % PHOTOS.length;
108 return mImageCache.get(idx);
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/lua/
lua_fnptr.i 41 int idx; /* the index on the stack */
44 #define SWIGLUA_FN_GET(fn) {lua_pushvalue(fn.L,fn.idx);}
49 %{ $1.L=L; $1.idx=$input; %}
105 void swiglua_ref_set(SWIGLUA_REF* pref,lua_State* L,int idx){
108 lua_pushvalue(L,idx); /* copy obj to top */
  /external/ltp/testcases/network/stress/ns-tools/
ns-common.c 91 size_t idx; local
96 for (idx = 0; idx < (sizeof(level) / sizeof(int)); idx++) {
101 if ((fp = fopen(procfile[idx], "r")) == NULL) {
102 fprintf(stderr, "Failed to open %s\n", procfile[idx]);
107 procfile[idx]);
111 (sd, SOL_SOCKET, level[idx], &bufsiz, sizeof(int))) {
116 procfile[idx]);
123 (sd, SOL_SOCKET, level[idx], &bufsiz
182 size_t idx; local
260 size_t idx; local
518 uint32_t idx; local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/RenderUtils/
ObjImporter.java 121 int idx; local
126 idx = Integer.parseInt(subParts.nextToken());
128 if (idx < 0) idx = (vertices.size() / 3) + idx;
129 else idx -= 1;
131 currObjIndexData.vertexIndices.add(idx);
133 quadvids[i - 1] = idx;
135 idx = Integer.parseInt(subParts.nextToken());
136 if (idx < 0) idx = (texCoords.size() / 2) + idx
    [all...]
  /external/freetype/src/psaux/
psstack.c 188 CF2_UInt idx )
192 if ( idx >= cf2_stack_count( stack ) )
198 switch ( stack->buffer[idx].type )
201 return cf2_intToFixed( stack->buffer[idx].u.i );
203 return cf2_fracToFixed( stack->buffer[idx].u.f );
205 return stack->buffer[idx].u.r;
213 CF2_UInt idx,
216 if ( idx > cf2_stack_count( stack ) )
222 stack->buffer[idx].u.r = val;
223 stack->buffer[idx].type = CF2_NumberFixed
249 CF2_Int start_idx, idx, i; local
    [all...]
  /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...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/
types.h 36 for (int idx = num_dims - 1; idx >= 0; --idx) {
37 int current_val = current[idx] + carry;
38 TFLITE_DCHECK_GE(dims[idx], current_val);
39 if (dims[idx] == current_val) {
40 current[idx] = 0;
42 current[idx] = current_val;
63 for (int idx = 0; idx < num_dims; ++idx)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
adjust_hsv_gpu.cu.h 103 const int64 idx = (blockDim.x * blockIdx.x + threadIdx.x) * 3;
105 if (idx > number_elements - 1) {
109 output[idx] = input[idx];
110 output[idx + 1] = input[idx + 1];
111 output[idx + 2] = input[idx + 2];
114 const HsvTuple hsv = rgb2hsv_cuda(input[idx], input[idx + 1], input[idx + 2])
    [all...]
  /external/libnl/src/
nl-monitor.c 40 int i, idx; local
79 for (idx = 1; argc > idx; idx++) {
81 if (!strcmp(argv[idx], known_groups[i].gr_name)) {
84 nl_cli_fatal(err, "%s: %s\n", argv[idx],
92 fprintf(stderr, "Warning: Unknown group: %s\n", argv[idx]);
  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_draw.h 91 struct pipe_index_buffer *idx = &batch->ctx->indexbuf; local
93 assert(!idx->user_buffer);
95 idx_buffer = idx->buffer;
96 idx_type = fd4_size2indextype(idx->index_size);
97 idx_size = idx->index_size * info->count;
98 idx_offset = idx->offset + (info->start * idx->index_size);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmcdc.h 62 #define CDC_SET_IF_IDX(hdr, idx) \
63 ((hdr)->flags = (((hdr)->flags & ~CDCF_IOC_IF_MASK) | ((idx) << CDCF_IOC_IF_SHIFT)))
108 #define BDC_SET_IF_IDX(hdr, idx) \
109 ((hdr)->flags2 = (((hdr)->flags2 & ~BDC_FLAG2_IF_MASK) | ((idx) << BDC_FLAG2_IF_SHIFT)))
120 #define BDC_SET_PAD_LEN(hdr, idx) \
122 (((idx) & BDC_FLAG2_PAD_IDX) << BDC_FLAG2_PAD_SHIFT))); \
124 (((idx) & BDC_FLAG_PAD_IDX) << BDC_FLAG_PAD_SHIFT)))
  /hardware/qcom/msm8998/json-c/
arraylist.c 76 array_list_put_idx(struct array_list *arr, int idx, void *data)
78 if(array_list_expand_internal(arr, idx+1)) return -1;
79 if(arr->array[idx]) arr->free_fn(arr->array[idx]);
80 arr->array[idx] = data;
81 if(arr->length <= idx) arr->length = idx + 1;
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_perfcounter.c 473 unsigned idx; local
489 for (idx = 0; idx < regs->num_prelude; ++idx)
491 for (idx = 0; idx < MIN2(count, regs->num_multi); ++idx)
492 radeon_emit(cs, selectors[idx] | regs->select_or);
500 for (idx = 0; idx < MIN2(count, regs->num_multi); ++idx
614 unsigned idx; local
    [all...]
  /external/mesa3d/src/compiler/glsl/
ast_array_index.cpp 49 update_max_array_access(ir_rvalue *ir, int idx, YYLTYPE *loc,
54 if (idx > (int)var->data.max_array_access) {
55 var->data.max_array_access = idx;
60 check_builtin_array_max_size(var->name, idx+1, *loc, state);
100 if (idx > max_ifc_array_access[field_index]) {
101 max_ifc_array_access[field_index] = idx;
106 check_builtin_array_max_size(deref_record->field, idx+1, *loc,
145 ir_rvalue *array, ir_rvalue *idx,
157 if (!idx->type->is_error()) {
158 if (!idx->type->is_integer())
172 const int idx = const_index->value.i[0]; local
    [all...]

Completed in 556 milliseconds

1 2 3 4 5 6 7 8 91011>>