Lines Matching defs:index

3149  * passes a reserved variable identifier and optional built-in array index.
3568 * to extract nested object values, and members of arrays by index.
4430 * strstr() and index()/rindex() have similar semantics if
4432 * pointer to the (empty) string, and index() and rindex()
4433 * both return index 0 (regardless of any position argument).
4451 * Both index() and rindex() take an optional position
4458 * If the position argument to index() is
4464 * notion that index() can start from a
4465 * negative index and increment its way up to
4476 * index() returns the string length. These
4477 * semantics violate the notion that index()
4488 * substr(), index() and rindex() -- or at the
4490 * semantics for index() and rindex() -- we
4524 * As D index() and rindex() are
4527 * one-based) index. (For you Perl
4666 int64_t index = (int64_t)tupregs[1].dttk_value;
4685 if (index < 0) {
4686 index += len;
4688 if (index < 0 && index + remaining > 0) {
4689 remaining += index;
4690 index = 0;
4694 if (index >= len || index < 0) {
4697 remaining += len - index;
4698 } else if (index + remaining > size) {
4699 remaining = size - index;
4703 if ((d[i] = dtrace_load8(s + index + i)) == '\0')
4749 * actually an array index then ignore the
12640 * Return the dof_sec_t pointer corresponding to a given section index. If the
12641 * index is not valid, dtrace_dof_error() is called and NULL is returned. If
12652 dtrace_dof_error(dof, "referenced section index is invalid");
12981 * The argument to these actions is an index into the
15219 * The offset count must not wrap the index, and the offsets
15295 "native argument index");
16980 * never freed; if a format index is less than the number
16982 * and that the format for the specified index is non-NULL.