Home
last modified time | relevance | path

Searched refs:first_param (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_posix.py303 def _test_all_chown_common(self, chown_func, first_param, stat_func): argument
307 stat = stat_func(first_param)
313 chown_func(first_param, uid, gid)
315 chown_func(first_param, -1, gid)
317 chown_func(first_param, uid, -1)
335 chown_func(first_param, big_value, big_value)
337 chown_func(first_param, -1, -1)
339 chown_func(first_param, uid, gid)
348 self.assertRaises(OSError, chown_func, first_param, 0, 0)
350 self.assertRaises(OSError, chown_func, first_param, 0, -1)
[all …]
/external/mesa3d/src/compiler/glsl/
Dast_function.cpp1457 ir_rvalue *first_param = (ir_rvalue *)parameters->get_head_raw(); in emit_inline_vector_constructor() local
1458 ir_rvalue *rhs = new(ctx) ir_swizzle(first_param, 0, 0, 0, 0, in emit_inline_vector_constructor()
1660 ir_rvalue *const first_param = (ir_rvalue *) parameters->get_head_raw(); in emit_inline_matrix_constructor() local
1665 glsl_base_type param_base_type = first_param->type->base_type; in emit_inline_matrix_constructor()
1666 assert(first_param->type->is_float() || first_param->type->is_double()); in emit_inline_matrix_constructor()
1675 if (first_param->type->is_float()) in emit_inline_matrix_constructor()
1688 inst = new(ctx) ir_assignment(rhs_ref, first_param, NULL, 0x01); in emit_inline_matrix_constructor()
1731 } else if (first_param->type->is_matrix()) { in emit_inline_matrix_constructor()
1741 assert(first_param->next->is_tail_sentinel()); in emit_inline_matrix_constructor()
1742 ir_rvalue *const src_matrix = first_param; in emit_inline_matrix_constructor()
[all …]
/external/python/cpython3/Lib/test/
Dtest_posix.py698 def _test_all_chown_common(self, chown_func, first_param, stat_func): argument
702 stat = stat_func(first_param)
708 chown_func(first_param, uid, gid)
710 chown_func(first_param, -1, gid)
712 chown_func(first_param, uid, -1)
730 chown_func(first_param, big_value, big_value)
732 chown_func(first_param, -1, -1)
734 chown_func(first_param, uid, gid)
743 self.assertRaises(OSError, chown_func, first_param, 0, 0)
745 self.assertRaises(OSError, chown_func, first_param, 0, -1)
[all …]
/external/llvm-project/polly/lib/External/isl/interface/
Dcpp.cc2010 int first_param = 0; in print_method_header() local
2013 first_param = 1; in print_method_header()
2044 for (int i = first_param; i < num_params; ++i) { in print_method_header()
/external/python/cpython3/Lib/email/
D_header_value_parser.py745 first_param = parts[0][1]
746 charset = first_param.charset
750 if not first_param.extended and len(parts) > 1:
/external/tensorflow/tensorflow/lite/delegates/nnapi/
Dnnapi_delegate.cc2066 auto first_param = context->tensors[node->inputs->data[0]].params; in Validate() local
2069 if (!Expect(curr_param.scale == first_param.scale && in Validate()
2070 curr_param.zero_point == first_param.zero_point, in Validate()
/external/llvm-project/clang/docs/
DAutomaticReferenceCounting.rst2030 explicitly qualified with ``__strong``. For instance, ``first_param`` is
2036 void f(NSArray *first_param, __strong NSArray *second_param) {
/external/llvm-project/clang/include/clang/Basic/
DAttrDocs.td5195 ``first_param`` is externally-retained below, but not ``second_param``:
5200 void f(NSArray *first_param, __strong NSArray *second_param) {