Home
last modified time | relevance | path

Searched refs:name_idx (Results 1 – 10 of 10) sorted by relevance

/external/OpenCSD/decoder/source/
Dtrc_ret_stack.cpp132 int name_idx = (int)isa; in LogOp() local
133 if (name_idx > 6) in LogOp()
134 name_idx = 6; in LogOp()
135 …d::dec << (head_idx+head_off) << "](0x" << std::hex << addr << "), " << isa_names[name_idx] << ";"; in LogOp()
/external/rust/crates/quiche/src/h3/qpack/
Ddecoder.rs177 let name_idx = decode_int(&mut b, 4)?; in decode() localVariable
182 name_idx, in decode()
192 let (name, _) = lookup_static(name_idx)?; in decode()
/external/python/setuptools/setuptools/
Ddepends.py151 name_idx = list(code.co_names).index(symbol)
165 elif arg == name_idx and (op == STORE_NAME or op == STORE_GLOBAL):
/external/llvm-project/llvm/utils/
Dshuffle_select_fuzz_tester.py289 name_idx = 0
298 shuf_inst = ShufInstr(str(name_idx), ty, op0, op1, shuf_mask)
313 select_inst = SelectInstr(str(name_idx), ty, shuf_inst, op2, select_mask)
325 name_idx += 1
/external/e2fsprogs/lib/ext2fs/
Dext_attr.c1364 int name_idx, x_name_idx; in xattr_find_position() local
1367 find_ea_index(name, &shortname, &name_idx); in xattr_find_position()
1372 if (name_idx < x_name_idx) in xattr_find_position()
1374 if (name_idx > x_name_idx) in xattr_find_position()
1398 int name_len, name_idx; in xattr_array_update() local
1403 find_ea_index(name, &shortname, &name_idx); in xattr_array_update()
1506 int i, len, name_idx; in space_used() local
1509 find_ea_index(x->name, &shortname, &name_idx); in space_used()
/external/python/cpython3/Objects/stringlib/
Dunicode_format.h272 Py_ssize_t *name_idx, SubString *name) in FieldNameIterator_next() argument
283 *name_idx = -1; in FieldNameIterator_next()
289 *name_idx = get_integer(name); in FieldNameIterator_next()
290 if (*name_idx == -1 && PyErr_Occurred()) in FieldNameIterator_next()
/external/python/cpython2/Objects/stringlib/
Dstring_format.h355 Py_ssize_t *name_idx, SubString *name) in FieldNameIterator_next() argument
366 *name_idx = -1; in FieldNameIterator_next()
372 *name_idx = get_integer(name); in FieldNameIterator_next()
373 if (*name_idx == -1 && PyErr_Occurred()) in FieldNameIterator_next()
/external/python/cpython3/Modules/
D_operator.c1286 Py_ssize_t name_idx = 0, name_count; in dotted_getattr() local
1291 for (name_idx = 0; name_idx < name_count; ++name_idx) { in dotted_getattr()
1292 attr_name = PyTuple_GET_ITEM(attr, name_idx); in dotted_getattr()
/external/rust/crates/rusqlite/src/
Dstatement.rs997 let name_idx = stmt.parameter_index(":name")?.unwrap(); in test_raw_binding() localVariable
998 stmt.raw_bind_parameter(name_idx, "example")?; in test_raw_binding()
/external/llvm-project/lldb/source/Expression/
DIRExecutionUnit.cpp516 const uint32_t name_idx = name[0] == '_' ? 8 : 7; in GetSectionTypeFromSectionName() local
517 llvm::StringRef dwarf_name(name.substr(name_idx)); in GetSectionTypeFromSectionName()