Home
last modified time | relevance | path

Searched refs:tablesize (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dsgienc.c99 int x, y, z, length, tablesize, ret, i; in encode_frame() local
164 tablesize = depth * height * 4; in encode_frame()
169 length += tablesize * 2 + depth * height * (2 * width + 1); in encode_frame()
204 bytestream2_init_writer(&taboff_pcb, pbc.buffer, tablesize); in encode_frame()
205 bytestream2_skip_p(&pbc, tablesize); in encode_frame()
208 bytestream2_init_writer(&tablen_pcb, pbc.buffer, tablesize); in encode_frame()
209 bytestream2_skip_p(&pbc, tablesize); in encode_frame()
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/
DSDL_dynapi.c168 typedef Sint32 (SDLCALL *SDL_DYNAPI_ENTRYFN)(Uint32 apiver, void *table, Uint32 tablesize);
172 SDL_DYNAPI_entry(Uint32 apiver, void *table, Uint32 tablesize) in SDL_DYNAPI_entry() argument
179 } else if (tablesize > sizeof (jump_table)) { in SDL_DYNAPI_entry()
190 jump_table.SDL_memcpy(output_jump_table, &jump_table, tablesize); in SDL_DYNAPI_entry()
/third_party/flutter/skia/third_party/externals/sdl/docs/
DREADME-dynapi.md97 SInt32 SDL_DYNAPI_entry(Uint32 version, void *table, Uint32 tablesize);
103 the needed functions if tablesize <= sizeof its own jump table. If tablesize is
109 (so we know if the tablesize might be smaller, or entries in it have changed).
/third_party/python/Modules/
Dposixmodule.c11416 size_t tablesize) in conv_confname() argument
11429 size_t hi = tablesize; in conv_confname()
12385 setup_confname_table(struct constdef *table, size_t tablesize, in setup_confname_table() argument
12391 qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs); in setup_confname_table()
12396 for (i=0; i < tablesize; ++i) { in setup_confname_table()