Home
last modified time | relevance | path

Searched refs:copyfunc (Results 1 – 4 of 4) sorted by relevance

/external/igt-gpu-tools/tests/i915/
Dgem_stress.c221 static void (*copyfunc)(struct igt_buf *src, unsigned src_x, unsigned src_y, variable
394 copyfunc = blitter_copyfunc; in next_copyfunc()
398 copyfunc = cpu_copyfunc; in next_copyfunc()
402 copyfunc = prw_copyfunc; in next_copyfunc()
406 copyfunc = render_copyfunc; in next_copyfunc()
410 copyfunc = blitter_copyfunc; in next_copyfunc()
414 copyfunc = render_copyfunc; in next_copyfunc()
416 copyfunc = cpu_copyfunc; in next_copyfunc()
628 copyfunc(src_buf, src_x, src_y, dst_buf, dst_x, dst_y, in copy_tiles()
/external/libcups/cups/
Darray.c54 cups_acopy_func_t copyfunc; /* Copy function */ member
397 if (a->copyfunc) in cupsArrayDup()
406 da->elements[i] = (a->copyfunc)(a->elements[i], a->data); in cupsArrayDup()
768 a->copyfunc = cf; in cupsArrayNew3()
1160 if (a->copyfunc) in cups_array_add()
1162 if ((a->elements[current] = (a->copyfunc)(e, a->data)) == NULL) in cups_array_add()
/external/python/cpython3/Modules/
Ditertoolsmodule.c882 PyObject *it, *copyable, *copyfunc, *result; in itertools_tee_impl() local
900 if (_PyObject_LookupAttrId(it, &PyId___copy__, &copyfunc) < 0) { in itertools_tee_impl()
905 if (copyfunc != NULL) { in itertools_tee_impl()
915 copyfunc = _PyObject_GetAttrId(copyable, &PyId___copy__); in itertools_tee_impl()
916 if (copyfunc == NULL) { in itertools_tee_impl()
925 copyable = _PyObject_CallNoArg(copyfunc); in itertools_tee_impl()
927 Py_DECREF(copyfunc); in itertools_tee_impl()
933 Py_DECREF(copyfunc); in itertools_tee_impl()
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/
Ddecode_fast.c809 upb_card card, _upb_field_parser *copyfunc, in fastdecode_string() argument
820 return copyfunc(UPB_PARSE_ARGS); in fastdecode_string()