Home
last modified time | relevance | path

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

/external/qemu/
Dblock.c171 BlockDriver *drv1; in bdrv_find_format() local
172 QLIST_FOREACH(drv1, &bdrv_drivers, list) { in bdrv_find_format()
173 if (!strcmp(drv1->format_name, format_name)) { in bdrv_find_format()
174 return drv1; in bdrv_find_format()
292 BlockDriver *drv1; in bdrv_find_protocol() local
306 drv1 = find_hdev_driver(filename); in bdrv_find_protocol()
307 if (drv1) { in bdrv_find_protocol()
308 return drv1; in bdrv_find_protocol()
326 QLIST_FOREACH(drv1, &bdrv_drivers, list) { in bdrv_find_protocol()
327 if (drv1->protocol_name && in bdrv_find_protocol()
[all …]
/external/eigen/test/
Dsparse_product.cpp132 RowDenseVector drv0(depth), drv1(rv1); in sparse_product() local
136 VERIFY_IS_APPROX(rv1=rv0*m3, drv1=drv0*refMat3); in sparse_product()
139 VERIFY_IS_APPROX(rv1=m3*cv0, drv1=refMat3*dcv0); in sparse_product()