HomeSort by relevance Sort by last modified time
    Searched defs:max_entrypoints (Results 1 - 8 of 8) sorted by null

  /hardware/intel/common/libva/test/basic/
test_03.c 37 int max_entrypoints; local
40 max_entrypoints = vaMaxNumEntrypoints(va_dpy);
41 status("vaMaxEntryPoints = %d\n", max_entrypoints);
42 ASSERT(max_entrypoints > 0);
44 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint));
49 memset(entrypoints, 0xff, max_entrypoints * sizeof(VAEntrypoint));
53 ASSERT(num_entrypoints <= max_entrypoints);
test_04.c 46 int max_entrypoints; local
50 max_entrypoints = vaMaxNumEntrypoints(va_dpy);
51 ASSERT(max_entrypoints > 0);
52 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint));
test_05.c 37 int max_entrypoints; local
41 max_entrypoints = vaMaxNumEntrypoints(va_dpy);
42 ASSERT(max_entrypoints > 0);
43 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint));
46 VAConfigID *configs = malloc(max_entrypoints * num_profiles * sizeof(VAConfigID));
test_06.c 29 int max_entrypoints; variable
44 max_entrypoints = vaMaxNumEntrypoints(va_dpy);
45 ASSERT(max_entrypoints > 0);
46 entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint));
49 configs = malloc(max_entrypoints * num_profiles * sizeof(VAConfigID));
test_09.c 37 int max_entrypoints; local
41 max_entrypoints = vaMaxNumEntrypoints(va_dpy);
42 ASSERT(max_entrypoints > 0);
43 VAEntrypoint *entrypoints = malloc(max_entrypoints * sizeof(VAEntrypoint));
46 VAConfigID *configs = malloc(max_entrypoints * num_profiles * sizeof(VAConfigID));
47 VAContextID *contexts = malloc(max_entrypoints * num_profiles * sizeof(VAContextID));
  /hardware/intel/common/libva/va/
va_backend.h 467 int max_entrypoints; member in struct:VADriverContext
  /hardware/intel/common/libva/test/encode/
mpeg2enc.c 823 int max_entrypoints, num_entrypoints, entrypoint; local
832 max_entrypoints = vaMaxNumEntrypoints(ctx->va_dpy);
833 entrypoint_list = malloc(max_entrypoints * sizeof(VAEntrypoint));
    [all...]
mpeg2vaenc.c 823 int max_entrypoints, num_entrypoints, entrypoint; local
832 max_entrypoints = vaMaxNumEntrypoints(ctx->va_dpy);
833 entrypoint_list = malloc(max_entrypoints * sizeof(VAEntrypoint));
    [all...]

Completed in 125 milliseconds