Home
last modified time | relevance | path

Searched defs:v (Results 1 – 25 of 333) sorted by relevance

12345678910>>...14

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_unixccompiler.py41 def gcv(v): argument
46 def gcv(v): argument
51 def gcv(v): argument
68 def gcv(v): argument
78 def gcv(v): argument
89 def gcv(v): argument
100 def gcv(v): argument
110 def gcv(v): argument
120 def gcv(v): argument
/device/linaro/hikey/hifi/xaf/host-apf/include/sys/fio/
Dxf-types.h78 #define xf_next_power_of_two(v) __xf_power_of_two_1((v) - 1) argument
79 #define __xf_power_of_two_1(v) __xf_power_of_two_2((v) | ((v) >> 1)) argument
80 #define __xf_power_of_two_2(v) __xf_power_of_two_3((v) | ((v) >> 2)) argument
81 #define __xf_power_of_two_3(v) __xf_power_of_two_4((v) | ((v) >> 4)) argument
82 #define __xf_power_of_two_4(v) __xf_power_of_two_5((v) | ((v) >> 8)) argument
83 #define __xf_power_of_two_5(v) __xf_power_of_two_6((v) | ((v) >> 16)) argument
84 #define __xf_power_of_two_6(v) ((v) + 1) argument
87 #define xf_is_power_of_two(v) (((v) & ((v) - 1)) == 0) argument
/device/google/contexthub/firmware/os/algos/common/math/
Dvec.h57 static inline void initVec3(struct Vec3 *v, float x, float y, float z) { in initVec3()
65 static inline void vec3Add(struct Vec3 *v, const struct Vec3 *w) { in vec3Add()
74 static inline void vec3AddVecs(struct Vec3 *u, const struct Vec3 *v, in vec3AddVecs()
85 static inline void vec3Sub(struct Vec3 *v, const struct Vec3 *w) { in vec3Sub()
94 static inline void vec3SubVecs(struct Vec3 *u, const struct Vec3 *v, in vec3SubVecs()
105 static inline void vec3ScalarMul(struct Vec3 *v, float c) { in vec3ScalarMul()
113 static inline float vec3Dot(const struct Vec3 *v, const struct Vec3 *w) { in vec3Dot()
120 static inline float vec3NormSquared(const struct Vec3 *v) { in vec3NormSquared()
126 static inline float vec3Norm(const struct Vec3 *v) { in vec3Norm()
133 static inline void vec3Normalize(struct Vec3 *v) { in vec3Normalize()
[all …]
Dvec.c54 void vecAdd(float *u, const float *v, const float *w, size_t dim) { in vecAdd()
64 void vecAddInPlace(float *v, const float *w, size_t dim) { in vecAddInPlace()
73 void vecSub(float *u, const float *v, const float *w, size_t dim) { in vecSub()
83 void vecScalarMul(float *u, const float *v, float c, size_t dim) { in vecScalarMul()
92 void vecScalarMulInPlace(float *v, float c, size_t dim) { in vecScalarMulInPlace()
100 float vecNorm(const float *v, size_t dim) { in vecNorm()
106 float vecNormSquared(const float *v, size_t dim) { in vecNormSquared()
111 float vecDot(const float *v, const float *w, size_t dim) { in vecDot()
122 float vecMaxAbsoluteValue(const float *v, size_t dim) { in vecMaxAbsoluteValue()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dintobject.c89 register PyIntObject *v; in PyInt_FromLong() local
132 int_dealloc(PyIntObject *v) in int_dealloc()
143 int_free(PyIntObject *v) in int_free()
429 int_print(PyIntObject *v, FILE *fp, int flags) in int_print()
440 int_compare(PyIntObject *v, PyIntObject *w) in int_compare()
448 int_hash(PyIntObject *v) in int_hash()
459 int_add(PyIntObject *v, PyIntObject *w) in int_add()
472 int_sub(PyIntObject *v, PyIntObject *w) in int_sub()
512 int_mul(PyObject *v, PyObject *w) in int_mul()
716 int_pow(PyIntObject *v, PyIntObject *w, PyIntObject *z) in int_pow()
[all …]
Dcomplexobject.c365 complex_format(PyComplexObject *v, int precision, char format_code) in complex_format()
428 complex_print(PyComplexObject *v, FILE *fp, int flags) in complex_print()
447 complex_repr(PyComplexObject *v) in complex_repr()
453 complex_str(PyComplexObject *v) in complex_str()
459 complex_hash(PyComplexObject *v) in complex_hash()
516 complex_add(PyObject *v, PyObject *w) in complex_add()
529 complex_sub(PyObject *v, PyObject *w) in complex_sub()
542 complex_mul(PyObject *v, PyObject *w) in complex_mul()
555 complex_div(PyObject *v, PyObject *w) in complex_div()
573 complex_classic_div(PyObject *v, PyObject *w) in complex_classic_div()
[all …]
Dfloatobject.c174 PyFloat_FromString(PyObject *v, char **pend) in PyFloat_FromString()
301 convert_to_double(PyObject **v, double *dbl) in convert_to_double()
327 PyFloat_AsString(char *buf, PyFloatObject *v) in PyFloat_AsString()
337 PyFloat_AsReprString(char *buf, PyFloatObject *v) in PyFloat_AsReprString()
347 float_print(PyFloatObject *v, FILE *fp, int flags) in float_print()
365 float_str_or_repr(PyFloatObject *v, int precision, char format_code) in float_str_or_repr()
380 float_repr(PyFloatObject *v) in float_repr()
386 float_str(PyFloatObject *v) in float_str()
407 float_richcompare(PyObject *v, PyObject *w, int op) in float_richcompare()
621 float_hash(PyFloatObject *v) in float_hash()
[all …]
Dlongobject.c63 long_normalize(register PyLongObject *v) in long_normalize()
119 PyLongObject *v; in PyLong_FromLong() local
163 PyLongObject *v; in PyLong_FromUnsignedLong() local
190 PyLongObject *v; in PyLong_FromDouble() local
251 register PyLongObject *v; in PyLong_AsLongAndOverflow() local
363 register PyLongObject *v; in PyLong_AsSsize_t() local
409 register PyLongObject *v; in PyLong_AsUnsignedLong() local
453 register PyLongObject *v; in PyLong_AsUnsignedLongMask() local
481 PyLongObject *v = (PyLongObject *)vv; in _PyLong_Sign() local
492 PyLongObject *v = (PyLongObject *)vv; in _PyLong_NumBits() local
[all …]
Dobject.c116 PyObject *v; in get_counts() local
364 PyObject_Repr(PyObject *v) in PyObject_Repr()
407 _PyObject_Str(PyObject *v) in _PyObject_Str()
449 PyObject_Str(PyObject *v) in PyObject_Str()
471 PyObject_Unicode(PyObject *v) in PyObject_Unicode()
560 PyObject *t, *v, *tb; in adjust_tp_compare() local
603 try_rich_compare(PyObject *v, PyObject *w, int op) in try_rich_compare()
638 try_rich_compare_bool(PyObject *v, PyObject *w, int op) in try_rich_compare_bool()
665 try_rich_to_3way_compare(PyObject *v, PyObject *w) in try_rich_to_3way_compare()
698 try_3way_compare(PyObject *v, PyObject *w) in try_3way_compare()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dintobject.c89 register PyIntObject *v; in PyInt_FromLong() local
132 int_dealloc(PyIntObject *v) in int_dealloc()
143 int_free(PyIntObject *v) in int_free()
443 int_print(PyIntObject *v, FILE *fp, int flags) in int_print()
454 int_compare(PyIntObject *v, PyIntObject *w) in int_compare()
462 int_hash(PyIntObject *v) in int_hash()
473 int_add(PyIntObject *v, PyIntObject *w) in int_add()
486 int_sub(PyIntObject *v, PyIntObject *w) in int_sub()
526 int_mul(PyObject *v, PyObject *w) in int_mul()
730 int_pow(PyIntObject *v, PyIntObject *w, PyIntObject *z) in int_pow()
[all …]
Dcomplexobject.c369 complex_format(PyComplexObject *v, int precision, char format_code) in complex_format()
432 complex_print(PyComplexObject *v, FILE *fp, int flags) in complex_print()
451 complex_repr(PyComplexObject *v) in complex_repr()
457 complex_str(PyComplexObject *v) in complex_str()
463 complex_hash(PyComplexObject *v) in complex_hash()
520 complex_add(PyObject *v, PyObject *w) in complex_add()
533 complex_sub(PyObject *v, PyObject *w) in complex_sub()
546 complex_mul(PyObject *v, PyObject *w) in complex_mul()
559 complex_div(PyObject *v, PyObject *w) in complex_div()
577 complex_classic_div(PyObject *v, PyObject *w) in complex_classic_div()
[all …]
Dfloatobject.c174 PyFloat_FromString(PyObject *v, char **pend) in PyFloat_FromString()
302 convert_to_double(PyObject **v, double *dbl) in convert_to_double()
328 PyFloat_AsString(char *buf, PyFloatObject *v) in PyFloat_AsString()
338 PyFloat_AsReprString(char *buf, PyFloatObject *v) in PyFloat_AsReprString()
348 float_print(PyFloatObject *v, FILE *fp, int flags) in float_print()
366 float_str_or_repr(PyFloatObject *v, int precision, char format_code) in float_str_or_repr()
381 float_repr(PyFloatObject *v) in float_repr()
387 float_str(PyFloatObject *v) in float_str()
408 float_richcompare(PyObject *v, PyObject *w, int op) in float_richcompare()
622 float_hash(PyFloatObject *v) in float_hash()
[all …]
Dobject.c116 PyObject *v; in get_counts() local
364 PyObject_Repr(PyObject *v) in PyObject_Repr()
407 _PyObject_Str(PyObject *v) in _PyObject_Str()
449 PyObject_Str(PyObject *v) in PyObject_Str()
471 PyObject_Unicode(PyObject *v) in PyObject_Unicode()
565 PyObject *t, *v, *tb; in adjust_tp_compare() local
608 try_rich_compare(PyObject *v, PyObject *w, int op) in try_rich_compare()
643 try_rich_compare_bool(PyObject *v, PyObject *w, int op) in try_rich_compare_bool()
670 try_rich_to_3way_compare(PyObject *v, PyObject *w) in try_rich_to_3way_compare()
703 try_3way_compare(PyObject *v, PyObject *w) in try_3way_compare()
[all …]
/device/generic/goldfish-opengl/android-emu/android/base/
Dring_buffer.c208 struct ring_buffer_view* v, in ring_buffer_view_init()
222 struct ring_buffer_view* v, in ring_buffer_init_view_only()
234 const struct ring_buffer_view* v, in ring_buffer_view_get_ring_pos()
241 const struct ring_buffer_view* v, in ring_buffer_view_can_write()
251 const struct ring_buffer_view* v, in ring_buffer_view_can_read()
261 const struct ring_buffer_view* v) { in ring_buffer_available_read()
274 const struct ring_buffer_view* v, in ring_buffer_copy_contents()
328 struct ring_buffer_view* v, in ring_buffer_view_write()
371 struct ring_buffer_view* v, in ring_buffer_view_read()
420 const struct ring_buffer_view* v, in ring_buffer_wait_write()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dmactoolboxglue.c86 PyObject *v; in PyErr_Mac() local
161 PyMac_GetOSType(PyObject *v, OSType *pr) in PyMac_GetOSType()
192 PyMac_GetStr255(PyObject *v, Str255 pbuf) in PyMac_GetStr255()
233 PyMac_GetRect(PyObject *v, Rect *r) in PyMac_GetRect()
251 PyMac_GetPoint(PyObject *v, Point *p) in PyMac_GetPoint()
267 PyMac_GetEventRecord(PyObject *v, EventRecord *e) in PyMac_GetEventRecord()
293 PyMac_GetFixed(PyObject *v, Fixed *f) in PyMac_GetFixed()
316 PyMac_Getwide(PyObject *v, wide *rv) in PyMac_Getwide()
Dstructmember.c12 PyObject *v; in listmembers() local
56 PyObject *v; in PyMember_GetOne() local
142 PyMember_Set(char *addr, struct memberlist *mlist, const char *name, PyObject *v) in PyMember_Set()
169 PyMember_SetOne(char *addr, PyMemberDef *l, PyObject *v) in PyMember_SetOne()
/device/linaro/hikey/hifi/xaf/hifi-dpf/include/
Dxf-debug.h51 #define xf_next_power_of_two(v) __xf_power_of_two_1((v) - 1) argument
52 #define __xf_power_of_two_1(v) __xf_power_of_two_2((v) | ((v) >> 1)) argument
53 #define __xf_power_of_two_2(v) __xf_power_of_two_3((v) | ((v) >> 2)) argument
54 #define __xf_power_of_two_3(v) __xf_power_of_two_4((v) | ((v) >> 4)) argument
55 #define __xf_power_of_two_4(v) __xf_power_of_two_5((v) | ((v) >> 8)) argument
56 #define __xf_power_of_two_5(v) __xf_power_of_two_6((v) | ((v) >> 16)) argument
57 #define __xf_power_of_two_6(v) ((v) + 1) argument
60 #define xf_is_power_of_two(v) (((v) & ((v) - 1)) == 0) argument
84 #define C_UNUSED(v) (void)(0 ? (v) = (v), 1 : 0) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dfuture_builtins.c33 builtin_hex(PyObject *self, PyObject *v) in builtin_hex()
45 builtin_oct(PyObject *self, PyObject *v) in builtin_oct()
57 builtin_ascii(PyObject *self, PyObject *v) in builtin_ascii()
Darraymodule.c111 c_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in c_setitem()
131 b_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in b_setitem()
162 BB_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in BB_setitem()
181 u_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in u_setitem()
206 h_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in h_setitem()
224 HH_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in HH_setitem()
253 i_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in i_setitem()
272 II_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in II_setitem()
310 l_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in l_setitem()
327 LL_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in LL_setitem()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dfuture_builtins.c33 builtin_hex(PyObject *self, PyObject *v) in builtin_hex()
45 builtin_oct(PyObject *self, PyObject *v) in builtin_oct()
57 builtin_ascii(PyObject *self, PyObject *v) in builtin_ascii()
Darraymodule.c111 c_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in c_setitem()
131 b_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in b_setitem()
162 BB_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in BB_setitem()
181 u_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in u_setitem()
206 h_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in h_setitem()
224 HH_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in HH_setitem()
253 i_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in i_setitem()
272 II_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in II_setitem()
310 l_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in l_setitem()
327 LL_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v) in LL_setitem()
[all …]
/device/linaro/hikey/hifi/xaf/hifi-dpf/include/sys/xt-shmem/
Dxf-hal.h94 u32 v; in xf_atomic_test_and_set() local
107 u32 v; in xf_atomic_test_and_clear() local
120 u32 v; in xf_atomic_set() local
133 u32 v; in xf_atomic_clear() local
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
Dlongobject.c63 long_normalize(register PyLongObject *v) in long_normalize()
119 PyLongObject *v; in PyLong_FromLong() local
163 PyLongObject *v; in PyLong_FromUnsignedLong() local
190 PyLongObject *v; in PyLong_FromDouble() local
251 register PyLongObject *v; in PyLong_AsLongAndOverflow() local
363 register PyLongObject *v; in PyLong_AsSsize_t() local
409 register PyLongObject *v; in PyLong_AsUnsignedLong() local
453 register PyLongObject *v; in PyLong_AsUnsignedLongMask() local
481 PyLongObject *v = (PyLongObject *)vv; in _PyLong_Sign() local
492 PyLongObject *v = (PyLongObject *)vv; in _PyLong_NumBits() local
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
Dlongobject.c59 long_normalize(register PyLongObject *v) in long_normalize()
115 PyLongObject *v; in PyLong_FromLong() local
159 PyLongObject *v; in PyLong_FromUnsignedLong() local
186 PyLongObject *v; in PyLong_FromDouble() local
247 register PyLongObject *v; in PyLong_AsLongAndOverflow() local
377 register PyLongObject *v; in PyLong_AsSsize_t() local
423 register PyLongObject *v; in PyLong_AsUnsignedLong() local
467 register PyLongObject *v; in PyLong_AsUnsignedLongMask() local
495 PyLongObject *v = (PyLongObject *)vv; in _PyLong_Sign() local
506 PyLongObject *v = (PyLongObject *)vv; in _PyLong_NumBits() local
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dstructmember.c12 PyObject *v; in listmembers() local
56 PyObject *v; in PyMember_GetOne() local
142 PyMember_Set(char *addr, struct memberlist *mlist, const char *name, PyObject *v) in PyMember_Set()
169 PyMember_SetOne(char *addr, PyMemberDef *l, PyObject *v) in PyMember_SetOne()

12345678910>>...14