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

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_mm.c 46 mm_slab_alloc(struct mm_slab *slab)
50 if (slab->free == 0)
53 for (i = 0; i < (slab->count + 31) / 32; ++i) {
54 b = ffs(slab->bits[i]) - 1;
57 assert(n < slab->count);
58 slab->free--;
59 slab->bits[i] &= ~(1 << b);
67 mm_slab_free(struct mm_slab *slab, int i)
69 assert(i < slab->count);
70 slab->bits[i / 32] |= 1 << (i % 32)
116 struct mm_slab *slab; local
161 struct mm_slab *slab; local
212 struct mm_slab *slab = (struct mm_slab *)alloc->priv; local
262 struct mm_slab *slab, *next; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.c 46 mm_slab_alloc(struct mm_slab *slab)
50 if (slab->free == 0)
53 for (i = 0; i < (slab->count + 31) / 32; ++i) {
54 b = ffs(slab->bits[i]) - 1;
57 assert(n < slab->count);
58 slab->free--;
59 slab->bits[i] &= ~(1 << b);
67 mm_slab_free(struct mm_slab *slab, int i)
69 assert(i < slab->count);
70 slab->bits[i / 32] |= 1 << (i % 32)
116 struct mm_slab *slab; local
161 struct mm_slab *slab; local
212 struct mm_slab *slab = (struct mm_slab *)alloc->priv; local
262 struct mm_slab *slab, *next; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_slab.c 55 * Buffer in a slab.
63 struct pb_slab *slab; member in struct:pb_slab_buffer
69 /** Offset relative to the start of the slab buffer. */
79 * Slab -- a contiguous piece of memory.
116 * Alignment, usage to be used to allocate the slab buffers.
139 * This buffer manager just dispatches buffer allocations to the appropriate slab
140 * manager, according to the requested buffer size, or by passes the slab
191 * Delete a buffer from the slab delayed list and put
192 * it on the slab FREE list.
198 struct pb_slab *slab = buf->slab local
302 struct pb_slab *slab; local
379 struct pb_slab *slab; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_slab.c 55 * Buffer in a slab.
63 struct pb_slab *slab; member in struct:pb_slab_buffer
69 /** Offset relative to the start of the slab buffer. */
79 * Slab -- a contiguous piece of memory.
116 * Alignment, usage to be used to allocate the slab buffers.
139 * This buffer manager just dispatches buffer allocations to the appropriate slab
140 * manager, according to the requested buffer size, or by passes the slab
191 * Delete a buffer from the slab delayed list and put
192 * it on the slab FREE list.
198 struct pb_slab *slab = buf->slab local
302 struct pb_slab *slab; local
379 struct pb_slab *slab; local
    [all...]
  /development/ndk/platforms/android-3/include/linux/
percpu.h 15 #include <linux/slab.h>
posix_acl.h 15 #include <linux/slab.h>
proc_fs.h 15 #include <linux/slab.h>
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
kernel_compat.h 52 #include <linux/slab.h>
  /external/lzma/xz-embedded/
xz_private.h 19 # include <linux/slab.h>
  /external/oprofile/module/
oprofile.h 20 #include <linux/slab.h>
  /external/chromium_org/base/process/
process_metrics.h 286 int slab; member in struct:base::SystemMemoryInfoKB
process_metrics_unittest.cc 101 "Slab: 54212 kB\n"
135 "Slab: 25912 kB\n"
159 EXPECT_TRUE(meminfo.slab == 54212);
process_metrics_linux.cc 496 slab = 0;
522 res->SetInteger("slab", slab);
589 else if (tokens[0] == "Slab:")
590 target = &meminfo->slab;
  /development/ndk/platforms/android-9/arch-x86/include/asm/
pgtable_32.h 29 #include <linux/slab.h>
  /cts/tools/dasm/src/dasm/
parser.cup 611 Int:reg IS Word:name Word:desc optional_signature:sign FROM Word:slab TO Word:elab
612 {: dAsm.addVar(slab.str_val, elab.str_val, name.str_val,
  /external/e2fsprogs/e2fsck/
recovery.c 23 #include <linux/slab.h>
revoke.c 67 #include <linux/slab.h>
  /dalvik/dx/etc/
jasmin.jar 
  /external/chromium_org/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js 615 // @slab: An array of data, or a number. If a number, then the size of the block to allocate,
620 // is initial data - if @slab is a number, then this does not matter at all and is
623 function allocate(slab, types, allocator, ptr) {
625 if (typeof slab === 'number') {
627 size = slab;
630 size = slab.length;
653 if (slab.subarray || slab.slice) {
654 HEAPU8.set(slab, ret);
656 HEAPU8.set(new Uint8Array(slab), ret)
    [all...]
  /external/chromium_org/tools/win/split_link/viz.js/
viz.js 557 // @slab: An array of data, or a number. If a number, then the size of the block to allocate,
562 // is initial data - if @slab is a number, then this does not matter at all and is
565 function allocate(slab, types, allocator, ptr) {
567 if (typeof slab === 'number') {
569 size = slab;
572 size = slab.length;
595 HEAPU8.set(new Uint8Array(slab), ret);
600 var curr = slab[i];
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
mandreel.js     [all...]

Completed in 6105 milliseconds