HomeSort by relevance Sort by last modified time
    Searched refs:slices (Results 1 - 25 of 292) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/util/
u_resource.c 47 unsigned slices; local
50 slices = 6;
52 slices = depth;
54 slices = res->array_size;
57 util_format_get_stride(res->format, width) * slices);
  /external/fio/profiles/
act.c 44 struct act_slice *slices; member in struct:act_run_data
51 struct act_slice *slices; member in struct:act_prof_data
313 slice = &apd->slices[apd->cur_slice];
393 fails += show_slice(&act_run_data->slices[i], i + 1);
405 if (!act_run_data->slices) {
406 act_run_data->slices = calloc(apd->nr_slices, sizeof(struct act_slice));
411 struct act_slice *dst = &act_run_data->slices[slice];
412 struct act_slice *src = &apd->slices[slice];
435 apd->slices = calloc(nr_slices, sizeof(struct act_slice));
447 free(apd->slices);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9shape.h 32 float length, UINT slices, UINT stacks, struct ID3DXMesh **mesh, struct ID3DXBuffer **adjacency);
35 HRESULT WINAPI D3DXCreateSphere(struct IDirect3DDevice9 *device, float radius, UINT slices,
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4614.go 7 // Issue 4614: slicing of nil slices confuses the compiler
issue5698.go 7 // Issue 5698: can define a key type with slices.
issue5704.go 8 // or rune slices return empty but non-nil slices.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4614.go 7 // Issue 4614: slicing of nil slices confuses the compiler
issue5698.go 7 // Issue 5698: can define a key type with slices.
issue5704.go 8 // or rune slices return empty but non-nil slices.
  /external/mesa3d/src/mesa/swrast/
s_texture.c 74 /* For 1D array textures, the slices are all 1 pixel high, and Height is
75 * the number of slices.
92 GLuint slices = texture_slices(texImage); local
102 swImg->Buffer = _mesa_align_malloc(bytesPerSlice * slices, 512);
110 for (i = 0; i < slices; i++) {
272 unsigned int i, slices; local
292 slices = texture_slices(texImage);
294 for (i = 0; i < slices; i++) {
332 unsigned int i, slices; local
343 slices = texture_slices(texImage)
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_resource.h 73 struct fd_resource_slice slices[MAX_MIP_LEVELS]; member in struct:fd_resource
139 return &rsc->slices[level];
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_resource.h 84 * for all slices, ilo_blit_resolve_slices() will silently make all slices
101 struct ilo_texture_slice *slices[PIPE_MAX_TEXTURE_LEVELS]; member in struct:ilo_texture
152 return &tex->slices[level][slice];
ilo_resource.c 254 FREE(tex->slices[0]);
261 struct ilo_texture_slice *slices; local
270 * There are (depth * tex->base.array_size) slices in total. Either depth
274 slices = CALLOC(depth * templ->array_size, sizeof(*slices));
275 if (!slices)
278 tex->slices[0] = slices;
282 tex->slices[lv] = tex->slices[lv - 1]
    [all...]
  /prebuilts/go/darwin-x86/test/
method3.go 7 // Test methods on slices.
  /prebuilts/go/linux-x86/test/
method3.go 7 // Test methods on slices.
  /prebuilts/go/darwin-x86/src/crypto/subtle/
constant_time.go 9 // ConstantTimeCompare returns 1 if and only if the two slices, x
11 // the slices and is independent of the contents.
57 panic("subtle: slices have different lengths")
  /prebuilts/go/linux-x86/src/crypto/subtle/
constant_time.go 9 // ConstantTimeCompare returns 1 if and only if the two slices, x
11 // the slices and is independent of the contents.
57 panic("subtle: slices have different lengths")
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_texture.c 262 A3XX_TEX_CONST_2_PITCH(fd3_pipe2nblocksx(cso->format, rsc->slices[lvl].pitch) * rsc->cpp);
268 A3XX_TEX_CONST_3_LAYERSZ1(rsc->slices[0].size0);
273 A3XX_TEX_CONST_3_LAYERSZ1(rsc->slices[lvl].size0);
274 while (lvl < cso->u.tex.last_level && sz2 != rsc->slices[lvl+1].size0)
275 sz2 = rsc->slices[++lvl].size0;
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_resource.c 49 rsc->slices[0].size,
50 rsc->slices[0].offset,
51 rsc->slices[0].offset +
52 rsc->slices[0].size +
57 rsc->slices[0].offset +
58 rsc->slices[0].size +
82 slice = &rsc->slices[0];
85 slice = &rsc->slices[ptrans->level];
275 struct vc4_resource_slice *slice = &rsc->slices[level];
386 return vc4_screen_bo_get_handle(pscreen, rsc->bo, rsc->slices[0].stride
    [all...]
vc4_resource.h 57 struct vc4_resource_slice slices[VC4_MAX_MIP_LEVELS]; member in struct:vc4_resource
  /prebuilts/go/darwin-x86/src/image/
ycbcr_test.go 114 slices := [][]byte{
119 for i, slice := range slices {
125 for i, slice := range slices {
  /prebuilts/go/linux-x86/src/image/
ycbcr_test.go 114 slices := [][]byte{
119 for i, slice := range slices {
125 for i, slice := range slices {
  /frameworks/base/core/tests/coretests/src/com/android/internal/app/
ResolverListControllerTest.java 99 final List<UsageStats> slices = new ArrayList<>(); local
100 slices.add(packageStats);
101 ParceledListSlice<UsageStats> stats = new ParceledListSlice<>(slices);
107 slices.add(oneClickStats);
  /prebuilts/go/darwin-x86/src/bytes/
bytes_decl.go 21 // Compare returns an integer comparing two byte slices lexicographically.
  /prebuilts/go/linux-x86/src/bytes/
bytes_decl.go 21 // Compare returns an integer comparing two byte slices lexicographically.

Completed in 1577 milliseconds

1 2 3 4 5 6 7 8 91011>>