Searched refs:ovf (Results 1 – 9 of 9) sorted by relevance
/external/mesa3d/src/mesa/vbo/ |
D | vbo_exec_draw.c | 78 GLuint ovf, i; in vbo_copy_vertices() local 90 ovf = nr&1; in vbo_copy_vertices() 91 for (i = 0 ; i < ovf ; i++) in vbo_copy_vertices() 92 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); in vbo_copy_vertices() 95 ovf = nr%3; in vbo_copy_vertices() 96 for (i = 0 ; i < ovf ; i++) in vbo_copy_vertices() 97 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); in vbo_copy_vertices() 100 ovf = nr&3; in vbo_copy_vertices() 101 for (i = 0 ; i < ovf ; i++) in vbo_copy_vertices() 102 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) ); in vbo_copy_vertices() [all …]
|
D | vbo_save_api.c | 114 GLuint ovf, i; in _save_copy_vertices() local 123 ovf = nr & 1; in _save_copy_vertices() 124 for (i = 0; i < ovf; i++) in _save_copy_vertices() 125 memcpy(dst + i * sz, src + (nr - ovf + i) * sz, in _save_copy_vertices() 129 ovf = nr % 3; in _save_copy_vertices() 130 for (i = 0; i < ovf; i++) in _save_copy_vertices() 131 memcpy(dst + i * sz, src + (nr - ovf + i) * sz, in _save_copy_vertices() 135 ovf = nr & 3; in _save_copy_vertices() 136 for (i = 0; i < ovf; i++) in _save_copy_vertices() 137 memcpy(dst + i * sz, src + (nr - ovf + i) * sz, in _save_copy_vertices() [all …]
|
/external/clang/test/SemaTemplate/ |
D | constexpr-instantiate.cpp | 115 template<int i> void ovf(int (&x)[f<i>()]); 116 void f() { int x[10]; ovf<10>(x); } in f()
|
/external/clang/test/Modules/ |
D | cxx-decls.cpp | 36 int use_overrides_virtual_functions(OverridesVirtualFunctions ovf) { return 0; } in use_overrides_virtual_functions() argument
|
/external/v8/src/compiler/ |
D | machine-operator-reducer.cc | 460 bool ovf = base::bits::SignedAddOverflow32(m.left().Value(), in ReduceProjection() local 462 return ReplaceInt32((index == 0) ? val : ovf); in ReduceProjection() 474 bool ovf = base::bits::SignedSubOverflow32(m.left().Value(), in ReduceProjection() local 476 return ReplaceInt32((index == 0) ? val : ovf); in ReduceProjection()
|
D | change-lowering.cc | 142 Node* ovf = graph()->NewNode(common()->Projection(1), add); in ChangeInt32ToTagged() local 144 Node* branch = graph()->NewNode(common()->Branch(), ovf, control); in ChangeInt32ToTagged()
|
D | instruction-selector.cc | 661 if (Node* ovf = node->FindProjection(1)) { in VisitInt32AddWithOverflow() local 662 FlagsContinuation cont(kOverflow, ovf); in VisitInt32AddWithOverflow() 671 if (Node* ovf = node->FindProjection(1)) { in VisitInt32SubWithOverflow() local 672 FlagsContinuation cont(kOverflow, ovf); in VisitInt32SubWithOverflow()
|
/external/v8/test/cctest/compiler/ |
D | test-run-machops.cc | 3963 Node* ovf = m.Projection(1, add); in TEST() local 3965 bt.AddReturn(ovf); in TEST() 3984 Node* ovf = m.Projection(1, add); in TEST() local 3986 m.Return(ovf); in TEST() 3997 Node* ovf = m.Projection(1, add); in TEST() local 3999 m.Return(ovf); in TEST() 4011 Node* ovf = m.Projection(1, add); in TEST() local 4013 m.Return(ovf); in TEST() 4028 Node* ovf = m.Projection(1, add); in TEST() local 4029 m.Branch(ovf, &blocka, &blockb); in TEST() [all …]
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonRegisterInfo.td | 125 def USR_OVF : Rc<?, "usr.ovf">;
|