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

  /external/libdrm/intel/
mm.c 101 struct mem_block *newblock; local
103 /* break left [p, newblock, p->next], then p = newblock */
105 newblock =
107 if (!newblock)
109 newblock->ofs = startofs;
110 newblock->size = p->size - (startofs - p->ofs);
111 newblock->free = 1;
112 newblock->heap = p->heap;
114 newblock->next = p->next
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_mm.c 111 struct mem_block *newblock; local
113 /* break left [p, newblock, p->next], then p = newblock */
115 newblock = CALLOC_STRUCT(mem_block);
116 if (!newblock)
118 newblock->ofs = startofs;
119 newblock->size = p->size - (startofs - p->ofs);
120 newblock->free = 1;
121 newblock->heap = p->heap;
123 newblock->next = p->next
    [all...]
  /external/mesa3d/src/mesa/main/
mm.c 102 struct mem_block *newblock; local
104 /* break left [p, newblock, p->next], then p = newblock */
106 newblock = (struct mem_block*) calloc(1, sizeof(struct mem_block));
107 if (!newblock)
109 newblock->ofs = startofs;
110 newblock->size = p->size - (startofs - p->ofs);
111 newblock->free = 1;
112 newblock->heap = p->heap;
114 newblock->next = p->next
    [all...]
dlist.c 995 Node *newblock; local
998 newblock = (Node *) malloc(sizeof(Node) * BLOCK_SIZE);
999 if (!newblock) {
1003 n[1].next = (Node *) newblock;
1004 ctx->ListState.CurrentBlock = newblock;
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
memory_pool.c 56 struct memory_block * newblock; local
61 newblock = (struct memory_block*)malloc(blocksize);
62 newblock->next = pool->blocks;
63 pool->blocks = newblock;
65 pool->head = (unsigned char*)(newblock + 1);
66 pool->end = ((unsigned char*)newblock) + blocksize;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
labels.s 4 * .newblock
16 .newblock
48 * Newblock directive clears local labels
49 .newblock
  /external/mksh/src/
eval.c     [all...]
main.c 213 newblock();
    [all...]
exec.c 652 newblock();
    [all...]
sh.h     [all...]
var.c 63 newblock(void) function
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-tic54x.c 1922 char newblock[] = " .newblock\\n"; local
    [all...]

Completed in 624 milliseconds