Home
last modified time | relevance | path

Searched refs:varr (Results 1 – 25 of 470) sorted by relevance

12345678910>>...19

/dports/games/taisei/taisei-1.3.2/src/renderer/gl33/
H A Dvertex_array.c36 snprintf(varr->debug_label, sizeof(varr->debug_label), "VAO #%i", varr->gl_handle); in gl33_vertex_array_create()
37 return varr; in gl33_vertex_array_create()
43 free(varr->attachments); in gl33_vertex_array_destroy()
44 free(varr->attribute_layout); in gl33_vertex_array_destroy()
45 free(varr); in gl33_vertex_array_destroy()
56 if(varr->index_attachment) { in gl33_vertex_array_update_layout()
58 gl33_index_buffer_on_vao_attach(varr->index_attachment, varr->gl_handle); in gl33_vertex_array_update_layout()
121 for(uint i = varr->num_attributes; i < varr->prev_num_attributes; ++i) { in gl33_vertex_array_update_layout()
129 varr->prev_num_attributes = varr->num_attributes; in gl33_vertex_array_update_layout()
130 varr->layout_dirty_bits = 0; in gl33_vertex_array_update_layout()
[all …]
H A Dvertex_array.h33 const char* gl33_vertex_array_get_debug_label(VertexArray *varr);
34 void gl33_vertex_array_set_debug_label(VertexArray *varr, const char *label);
35 void gl33_vertex_array_destroy(VertexArray *varr);
36 void gl33_vertex_array_attach_vertex_buffer(VertexArray *varr, VertexBuffer *vbuf, uint attachment);
37 void gl33_vertex_array_attach_index_buffer(VertexArray *varr, IndexBuffer *ibuf);
38 VertexBuffer* gl33_vertex_array_get_vertex_attachment(VertexArray *varr, uint attachment);
39 IndexBuffer* gl33_vertex_array_get_index_attachment(VertexArray *varr);
40 void gl33_vertex_array_layout(VertexArray *varr, uint nattribs, VertexAttribFormat attribs[nattribs…
41 void gl33_vertex_array_flush_buffers(VertexArray *varr);
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxx/test/std/containers/views/span.cons/
H A Dptr_ptr.fail.cpp27 volatile int varr[] = {7,8,9}; variable
44 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
46 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
55 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
57 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
H A Dptr_ptr.pass.cpp28 volatile int varr[] = {7,8,9}; in checkCV() local
35 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV()
44 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV()
57 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV()
68 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++/trunk/test/std/containers/views/span.cons/
H A Dptr_ptr.fail.cpp27 volatile int varr[] = {7,8,9}; variable
44 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
46 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
55 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
57 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
H A Dptr_ptr.pass.cpp28 volatile int varr[] = {7,8,9}; in checkCV() local
35 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV()
44 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV()
57 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV()
68 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
/dports/devel/libc++/libcxx-10.0.1.src/test/std/containers/views/span.cons/
H A Dptr_ptr.fail.cpp27 volatile int varr[] = {7,8,9}; variable
44 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
46 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
55 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
57 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
H A Dptr_ptr.pass.cpp28 volatile int varr[] = {7,8,9}; in checkCV() local
35 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV()
44 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV()
57 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV()
68 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
/dports/net/kamailio/kamailio-5.4.5/src/modules/acc_json/
H A Dacc_json_mod.c286 LM_DBG("[%d][%.*s]\n", i, inf->varr[i].len, inf->varr[i].s); in acc_json_send_request()
287 char *tmp = strndup(inf->varr[i].s, inf->varr[i].len); in acc_json_send_request()
316 inf->varr[i].s); in acc_json_send_request()
317 char *tmp = strndup(inf->varr[i].s, inf->varr[i].len); in acc_json_send_request()
336 inf->varr[i].s); in acc_json_send_request()
337 char *tmp = strndup(inf->varr[i].s, inf->varr[i].len); in acc_json_send_request()
400 LM_DBG("[%d][%.*s]\n", i, inf->varr[i].len, inf->varr[i].s); in cdr_json_write()
401 char *tmp = strndup(inf->varr[i].s, inf->varr[i].len); in cdr_json_write()
421 inf->varr + attr_cnt, in cdr_json_write()
440 inf->varr[i].s); in cdr_json_write()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libcxx/test/std/containers/views/span.cons/
H A Dptr_ptr.fail.cpp27 volatile int varr[] = {7,8,9}; variable
49 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
51 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
60 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
62 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
H A Dptr_ptr.pass.cpp28 volatile int varr[] = {7,8,9}; in checkCV() local
35 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV()
44 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV()
57 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV()
68 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/test/std/containers/views/span.cons/
H A Dptr_ptr.fail.cpp27 volatile int varr[] = {7,8,9}; variable
49 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
51 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
60 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
62 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
H A Dptr_ptr.pass.cpp28 volatile int varr[] = {7,8,9}; in checkCV() local
35 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV()
44 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV()
57 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV()
68 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
/dports/devel/llvm12/llvm-project-12.0.1.src/libcxx/test/std/containers/views/span.cons/
H A Dptr_ptr.fail.cpp27 volatile int varr[] = {7,8,9}; variable
49 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
51 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
60 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
62 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
H A Dptr_ptr.pass.cpp28 volatile int varr[] = {7,8,9}; in checkCV() local
35 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV()
44 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV()
57 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV()
68 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/test/std/containers/views/span.cons/
H A Dptr_ptr.fail.cpp27 volatile int varr[] = {7,8,9}; variable
49 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
51 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
60 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
62 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
H A Dptr_ptr.pass.cpp28 volatile int varr[] = {7,8,9}; in checkCV() local
35 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV()
44 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV()
57 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV()
68 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/test/std/containers/views/span.cons/
H A Dptr_ptr.fail.cpp27 volatile int varr[] = {7,8,9}; variable
49 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
51 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
60 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
62 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
H A Dptr_ptr.pass.cpp28 volatile int varr[] = {7,8,9}; in checkCV() local
35 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV()
44 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV()
57 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV()
68 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libcxx/test/std/containers/views/span.cons/
H A Dptr_ptr.fail.cpp27 volatile int varr[] = {7,8,9}; variable
49 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
51 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo… in main()
60 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
62 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo… in main()
H A Dptr_ptr.pass.cpp28 volatile int varr[] = {7,8,9}; in checkCV() local
35 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV()
44 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV()
57 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV()
68 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/test/std/containers/views/span.cons/
H A Dptr_ptr.fail.cpp27 volatile int varr[] = {7,8,9};
49 …std::span< int> s2{ varr, varr + 3}; // expected-error {{no matching constructor fo…
51 …std::span<const int> s4{ varr, varr + 3}; // expected-error {{no matching constructor fo…
60 …std::span< int,3> s2{ varr, varr + 3}; // expected-error {{no matching constructo…
62 …std::span<const int,3> s4{ varr, varr + 3}; // expected-error {{no matching constructo…
H A Dptr_ptr.pass.cpp28 volatile int varr[] = {7,8,9}; in checkCV() local
35 …std::span< volatile int> s3{ varr, varr + 3}; // a span< volatile int> pointing at vola… in checkCV()
44 …std::span< volatile int,3> s3{ varr, varr + 3}; // a span< volatile int> pointing at … in checkCV()
57 …std::span<const volatile int> s6{varr, varr + 3}; // a span<const volatile int> pointing at … in checkCV()
68 …std::span<const volatile int,3> s6{varr, varr + 3}; // a span<const volatile int> pointing at vola… in checkCV()
/dports/sysutils/istio/istio-1.6.7/pilot/pkg/config/kube/crd/
H A Dconversion_test.go62 if varr, _, err := ParseInputs(""); len(varr) > 0 || err != nil {
63 t.Errorf(`ParseInput("") => got %v, %v, want nil, nil`, varr, err)
71 if varr, others, err := ParseInputs("---\n"); err != nil || len(varr) != 0 || len(others) != 0 {
72 t.Errorf(`ParseInput("---") => got %v, %v, %v`, varr, others, err)
83 varr, _, err := ParseInputs(validInput)
84 if err != nil || len(varr) == 0 {
85 t.Errorf("ParseInputs(correct input) => got %v, %v", varr, err)
/dports/games/taisei/taisei-1.3.2/src/renderer/common/
H A Dmodels.c18 VertexArray *varr; member
46 _r_models.varr = r_vertex_array_create(); in _r_models_init()
47 r_vertex_array_set_debug_label(_r_models.varr, "Static models vertex array"); in _r_models_init()
48 r_vertex_array_layout(_r_models.varr, 3, fmt); in _r_models_init()
49 r_vertex_array_attach_vertex_buffer(_r_models.varr, _r_models.vbuf, 0); in _r_models_init()
50 r_vertex_array_attach_index_buffer(_r_models.varr, _r_models.ibuf); in _r_models_init()
56 r_vertex_array_destroy(_r_models.varr); in _r_models_shutdown()
61 out_mdl->vertex_array = _r_models.varr; in r_model_add_static()
85 return _r_models.varr; in r_vertex_array_static_models()

12345678910>>...19