HomeSort by relevance Sort by last modified time
    Searched refs:bsp_size (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv98_video_bsp.c 45 uint32_t slice_size, bucket_size, ring_size, bsp_size; local
63 bsp_size = NOUVEAU_VP3_BSP_RESERVED_SIZE;
65 bsp_size += num_bytes[i];
66 bsp_size += 256; /* the 4 end markers */
68 if (!bsp_bo || bsp_size > bsp_bo->size) {
72 bsp_size += (1 << 20) - 1;
73 bsp_size &= ~((1 << 20) - 1);
75 ret = nouveau_bo_new(dec->client->device, NOUVEAU_BO_VRAM, 0, bsp_size, NULL, &tmp_bo);
78 bsp_bo ? (unsigned)bsp_bo->size : 0, bsp_size, ret);
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_video_bsp.c 58 uint32_t bsp_size = 0; local
62 bsp_size = dec->bsp_ptr - (char *)bsp_bo->map;
64 bsp_size += num_bytes[i];
65 bsp_size += 256; /* the 4 end markers */
67 if (bsp_size > bsp_bo->size) {
75 bsp_size += (1 << 20) - 1;
76 bsp_size &= ~((1 << 20) - 1);
78 ret = nouveau_bo_new(dec->client->device, NOUVEAU_BO_VRAM, 0, bsp_size, &cfg, &tmp_bo);
81 bsp_bo ? (unsigned)bsp_bo->size : 0, bsp_size, ret);

Completed in 5697 milliseconds