Searched refs:idx (Results 51 - 75 of 2166) sorted by relevance

1234567891011>>

/external/lldb/tools/debugserver/source/
H A DTTYState.cpp93 TTYStateSwitcher::GetState(uint32_t idx, int fd, bool saveProcessGroup) argument
95 if (ValidStateIndex(idx))
96 return m_ttystates[idx].GetTTYState(fd, saveProcessGroup);
101 TTYStateSwitcher::SetState(uint32_t idx) const
103 if (!ValidStateIndex(idx))
107 if (ValidStateIndex(m_currentState) && (idx == m_currentState) && m_ttystates[idx].IsValid())
112 if (m_ttystates[idx].SetTTYState())
114 m_currentState = idx;
/external/srtp/test/
H A Drdbx_driver.c142 * rdbx_check_add(rdbx, idx) checks a known-to-be-good idx against
150 rdbx_check_add(rdbx_t *rdbx, uint32_t idx) { argument
154 delta = index_guess(&rdbx->index, &est, idx);
157 printf("replay_check failed at index %u\n", idx);
162 * in practice, we'd authenticate the packet containing idx, using
167 printf("rdbx_add_index failed at index %u\n", idx);
175 * rdbx_check_expect_failure(rdbx_t *rdbx, uint32_t idx)
177 * checks that a sequence number idx is in the replay database
182 rdbx_check_expect_failure(rdbx_t *rdbx, uint32_t idx) { argument
200 rdbx_check_unordered(rdbx_t *rdbx, uint32_t idx) argument
214 uint32_t idx, ircvd; local
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_hf.c213 ** Description Internal function to get idx by bdaddr
215 ** Returns idx
261 static void send_at_result(UINT8 ok_flag, UINT16 errcode, int idx) argument
272 BTA_AgResult (btif_hf_cb[idx].handle, BTA_AG_UNAT_RES, &ag_res);
295 void clear_phone_state_multihf(int idx) argument
297 btif_hf_cb[idx].call_setup_state = BTHF_CALL_STATE_IDLE;
298 btif_hf_cb[idx].num_active = btif_hf_cb[idx].num_held = 0;
305 ** Description Returns idx for latest connected HF
357 BTIF_TRACE_EVENT("BTHF: %s: slc connected for idx
392 int idx = p_data->hdr.handle - 1; local
671 int idx = btif_hf_idx_by_bdaddr((bt_bdaddr_t *)p_param); local
783 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
807 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
835 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
859 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
894 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
930 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
990 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
1022 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
1062 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
1091 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
1122 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
1177 int idx, i; local
1437 int idx = btif_hf_idx_by_bdaddr(bd_addr); local
[all...]
/external/ceres-solver/internal/ceres/
H A Dcompressed_col_sparse_matrix_utils.h77 for (IntegerType idx = cols[c]; idx < cols[c + 1] - 1; ++idx) {
78 const IntegerType r = rows[idx];
79 const double v = values[idx];
97 for (IntegerType idx = cols[c]; idx < cols[c + 1] - 1; ++idx) {
98 const IntegerType r = rows[idx];
99 const double v = values[idx];
[all...]
/external/lldb/include/lldb/Interpreter/
H A DOptionValueArray.h89 operator[](size_t idx) const
92 if (idx < m_values.size())
93 value_sp = m_values[idx];
98 GetValueAtIndex (size_t idx) const
101 if (idx < m_values.size())
102 value_sp = m_values[idx];
120 InsertValue (size_t idx, const lldb::OptionValueSP &value_sp) argument
126 if (idx < m_values.size())
127 m_values.insert(m_values.begin() + idx, value_sp);
136 ReplaceValue (size_t idx, cons argument
152 DeleteValue(size_t idx) argument
[all...]
H A DOptionValueProperties.h104 GetPropertyNameAtIndex (uint32_t idx) const;
107 GetPropertyDescriptionAtIndex (uint32_t idx) const;
130 uint32_t idx) const;
143 uint32_t idx) const;
171 GetPropertyAtIndexAsOptionValueArch (const ExecutionContext *exe_ctx, uint32_t idx) const;
174 GetPropertyAtIndexAsArgs (const ExecutionContext *exe_ctx, uint32_t idx, Args &args) const;
177 SetPropertyAtIndexFromArgs (const ExecutionContext *exe_ctx, uint32_t idx, const Args &args);
180 GetPropertyAtIndexAsBoolean (const ExecutionContext *exe_ctx, uint32_t idx, bool fail_value) const;
183 SetPropertyAtIndexAsBoolean (const ExecutionContext *exe_ctx, uint32_t idx, bool new_value);
186 GetPropertyAtIndexAsOptionValueDictionary (const ExecutionContext *exe_ctx, uint32_t idx) cons
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DDataTypes.cpp83 for (size_t idx = 0; idx < len; ++idx) {
84 if (num && str[idx] == 'e') {
88 memmove(&str[idx + 2], &str[idx + 1], len - idx);
89 str[idx] = '*';
90 str[idx + 1] = '^';
93 num = str[idx] >
[all...]
/external/skia/experimental/Intersection/
H A DDataTypes.cpp83 for (size_t idx = 0; idx < len; ++idx) {
84 if (num && str[idx] == 'e') {
88 memmove(&str[idx + 2], &str[idx + 1], len - idx);
89 str[idx] = '*';
90 str[idx + 1] = '^';
93 num = str[idx] >
[all...]
/external/elfutils/0.153/libdwfl/
H A Dsegment.c157 size_t idx = (l + u) / 2; local
158 if (address < dwfl->lookup_addr[idx])
159 u = idx;
162 l = idx + 1;
164 return idx;
184 int idx = lookup (dwfl, start, hint); local
185 if (unlikely (idx < 0))
190 idx = 0;
193 else if (dwfl->lookup_addr[idx] > start)
196 if (unlikely (insert (dwfl, idx
272 int idx = lookup (dwfl, address, -1); local
[all...]
H A Ddwfl_module_getsrc.c73 size_t idx = (l + u) / 2; local
74 if (addr < cu->die.cu->lines->info[idx].addr)
75 u = idx;
76 else if (addr > cu->die.cu->lines->info[idx].addr)
77 l = idx + 1;
79 return &cu->lines->idx[idx];
91 return &cu->lines->idx[u - 1];
/external/chromium_org/content/renderer/
H A Dskia_benchmarking_extension_unittest.cc62 int idx = 0; local
65 ASSERT_TRUE(canvas.getDrawCommandAt(idx) != NULL);
66 cmd = canvas.getDrawCommandAt(idx)->getType();
70 ASSERT_TRUE(canvas.getDrawCommandAt(++idx) != NULL);
71 cmd = canvas.getDrawCommandAt(idx)->getType();
74 EXPECT_TRUE(HasInfoField(canvas, idx, "SkRect"));
75 EXPECT_TRUE(HasInfoField(canvas, idx, "Op"));
76 EXPECT_TRUE(HasInfoField(canvas, idx, "doAA"));
78 ASSERT_TRUE(canvas.getDrawCommandAt(++idx) != NULL);
79 cmd = canvas.getDrawCommandAt(idx)
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi_decl_sm30.c42 unsigned *idx)
46 *idx = semantic.Index;
50 *idx = semantic.Index;
54 *idx = semantic.Index + 2; /* sharing with COLOR */
58 *idx = 0;
63 *idx = semantic.Index;
67 *idx = svga_remap_generic_index(emit->key.generic_remap_table,
72 *idx = semantic.Index;
80 *idx = 0;
85 *idx
39 translate_vs_ps_semantic(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned *usage, unsigned *idx) argument
178 ps30_input(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
324 ps30_output(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
367 vs30_input(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
425 vs30_output(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
521 unsigned idx; local
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_decl_sm30.c42 unsigned *idx)
46 *idx = semantic.Index;
50 *idx = semantic.Index;
54 *idx = semantic.Index + 2; /* sharing with COLOR */
58 *idx = 0;
63 *idx = semantic.Index;
67 *idx = svga_remap_generic_index(emit->key.generic_remap_table,
72 *idx = semantic.Index;
80 *idx = 0;
85 *idx
39 translate_vs_ps_semantic(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned *usage, unsigned *idx) argument
178 ps30_input(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
324 ps30_output(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
367 vs30_input(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
425 vs30_output(struct svga_shader_emitter *emit, struct tgsi_declaration_semantic semantic, unsigned idx) argument
521 unsigned idx; local
[all...]
/external/chromium_org/third_party/opus/src/silk/float/
H A Dsort_FLP.c41 opus_int *idx, /* O Index vector for the sorted elements */
56 idx[ i ] = i;
64 idx[ j + 1 ] = idx[ j ]; /* Shift index */
67 idx[ j + 1 ] = i; /* Write index */
77 idx[ j + 1 ] = idx[ j ]; /* Shift index */
80 idx[ j + 1 ] = i; /* Write index */
39 silk_insertion_sort_decreasing_FLP( silk_float *a, opus_int *idx, const opus_int L, const opus_int K ) argument
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-728.js39 function get(idx) { return obj[idx]; }
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_sync.cc59 u32 idx = block_alloc_.Alloc(&thr->block_cache); local
60 MBlock *b = block_alloc_.Map(idx);
66 *meta = idx | kFlagBlock;
84 u32 idx = *meta; local
87 if (idx == 0)
89 if (idx & kFlagBlock) {
90 block_alloc_.Free(&thr->block_cache, idx & ~kFlagMask);
92 } else if (idx & kFlagSync) {
93 DCHECK(idx & kFlagSync);
94 SyncVar *s = sync_alloc_.Map(idx
108 u32 idx = *meta; local
136 u32 idx = idx0; local
200 u32 idx = *src_meta; local
[all...]
/external/libopus/silk/float/
H A Dsort_FLP.c41 opus_int *idx, /* O Index vector for the sorted elements */
56 idx[ i ] = i;
64 idx[ j + 1 ] = idx[ j ]; /* Shift index */
67 idx[ j + 1 ] = i; /* Write index */
77 idx[ j + 1 ] = idx[ j ]; /* Shift index */
80 idx[ j + 1 ] = i; /* Write index */
39 silk_insertion_sort_decreasing_FLP( silk_float *a, opus_int *idx, const opus_int L, const opus_int K ) argument
/external/eigen/Eigen/src/MetisSupport/
H A DMetisSupport.h46 Index idx = it.index(); // Get the row index (for column major) or column index (for row major) local
47 if (visited(idx) != j )
49 visited(idx) = j;
56 Index idx = it.index(); local
57 if(visited(idx) != j)
59 visited(idx) = j;
79 Index idx = it.index(); // Get the row index (for column major) or column index (for row major) local
80 if (visited(idx) != j )
82 visited(idx) = j;
83 m_innerIndices(CurNz) = idx;
90 Index idx = it.index(); local
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DEncodingInfo.java218 final int idx = codePoint - m_explFirst;
221 if (m_alreadyKnown[idx])
222 ret = m_isInEncoding[idx];
227 m_alreadyKnown[idx] = true;
228 m_isInEncoding[idx] = ret;
265 final int idx = codePoint - m_explFirst;
268 if (m_alreadyKnown[idx])
269 ret = m_isInEncoding[idx];
274 m_alreadyKnown[idx] = true;
275 m_isInEncoding[idx]
[all...]
/external/chromium_org/url/
H A Durl_file.h31 int idx = begin_index; local
32 while (idx < spec_len && !IsURLSlash(spec[idx]))
33 idx++;
34 return idx;
/external/elfutils/0.153/libdw/
H A Ddwarf_decl_file.c64 Dwarf_Sword idx = 0; local
68 &idx) != 0)
72 if (idx == 0)
101 if (idx >= cu->files->nfiles)
107 return cu->files->info[idx].name;
/external/chromium_org/third_party/simplejson/
H A D_speedups.c122 scan_once_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr);
124 scan_once_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr);
126 _build_rval_index_tuple(PyObject *rval, Py_ssize_t idx);
477 _build_rval_index_tuple(PyObject *rval, Py_ssize_t idx) { argument
478 /* return (rval, idx) tuple, stealing reference to rval */
482 steal a reference to rval, returns (rval, idx)
487 pyidx = PyInt_FromSsize_t(idx);
1020 _parse_object_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) { argument
1022 idx is the index of the first character after the opening curly brace.
1052 while (idx <
1169 _parse_object_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1320 _parse_array_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1392 _parse_array_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1464 _parse_constant(PyScannerObject *s, char *constant, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1502 Py_ssize_t idx = start; local
1605 Py_ssize_t idx = start; local
1684 scan_once_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1784 scan_once_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) argument
1888 Py_ssize_t idx; local
2333 Py_ssize_t idx; local
[all...]
/external/iproute2/tc/
H A Dq_mqprio.c35 int idx; local
43 idx = 0;
51 while (idx < TC_QOPT_MAX_QUEUE && NEXT_ARG_OK()) {
53 if (get_u8(&opt.prio_tc_map[idx], *argv, 10)) {
57 idx++;
59 for ( ; idx < TC_QOPT_MAX_QUEUE; idx++)
60 opt.prio_tc_map[idx] = 0;
64 while (idx < TC_QOPT_MAX_QUEUE && NEXT_ARG_OK()) {
72 if (get_u16(&opt.count[idx], to
[all...]
/external/lldb/source/Core/
H A DFileSpecList.cpp118 for (size_t idx = start_idx; idx < num_files; ++idx)
122 if (m_files[idx].GetFilename() == file_spec.GetFilename())
123 return idx;
127 if (FileSpec::Equal (m_files[idx], file_spec, full))
128 return idx;
137 // Returns the FileSpec object at index "idx". If "idx" is out of
141 FileSpecList::GetFileSpecAtIndex(size_t idx) cons
[all...]
/external/lldb/source/Interpreter/
H A DCommandHistory.cpp50 size_t idx = Args::StringToUInt32 (input_str+2, 0, 0, &success); local
53 if (idx > m_history.size())
55 idx = m_history.size() - idx;
56 return m_history[idx].c_str();
69 uint32_t idx = Args::StringToUInt32 (input_str+1, 0, 0, &success); local
72 if (idx >= m_history.size())
74 return m_history[idx].c_str();
79 CommandHistory::GetStringAtIndex (size_t idx) const
82 if (idx < m_histor
[all...]

Completed in 1440 milliseconds

1234567891011>>