Home
last modified time | relevance | path

Searched refs:vfrom (Results 1 – 2 of 2) sorted by relevance

/external/eigen/Eigen/src/Core/arch/ZVector/
DPacketMath.h342 Packet *vfrom;
343 vfrom = (Packet *) from;
344 return vfrom->v4i;
351 Packet4f vfrom;
352 vfrom.v4f[0] = vec_ld2f(&from[0]);
353 vfrom.v4f[1] = vec_ld2f(&from[2]);
354 return vfrom;
361 Packet *vfrom;
362 vfrom = (Packet *) from;
363 return vfrom->v2d;
/external/python/cpython2/Objects/
Dbytearrayobject.c2040 Py_buffer vfrom, vto; in bytearray_replace() local
2045 if (_getbuffer(from, &vfrom) < 0) in bytearray_replace()
2048 PyBuffer_Release(&vfrom); in bytearray_replace()
2053 vfrom.buf, vfrom.len, in bytearray_replace()
2056 PyBuffer_Release(&vfrom); in bytearray_replace()