| /utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel/ |
| H A D | mem_priv.h | 189 cyg_uint8 *top; member 391 pThis->top = (cyg_uint8 *)((cyg_int32)(base+size+sizeof(struct memdq)) & -pThis->alignment) - in Cyg_Mempool_Implementation__Create() 394 CYG_ASSERT( pThis->top > pThis->bottom , "heap too small" ); in Cyg_Mempool_Implementation__Create() 395 CYG_ASSERT( pThis->top <= (base+size), "top too large" ); in Cyg_Mempool_Implementation__Create() 396 CYG_ASSERT( ((cyg_int32)(pThis->top+sizeof(struct memdq)) & (pThis->alignment-1))==0, in Cyg_Mempool_Implementation__Create() 409 pThis->freemem = dq->size = pThis->top - pThis->bottom; in Cyg_Mempool_Implementation__Create() 480 CYG_ASSERT( pThis->bottom<=alloced && alloced<=pThis->top, "alloced outside pool" ); in Cyg_Mempool_Implementation__try_alloc() 531 CYG_ASSERT( (pThis->bottom <= alloc_ptr) && (alloc_ptr <= pThis->top), in Cyg_Mempool_Implementation__resize_alloc() 547 if ( (cyg_uint8 *)dq + newsize <= pThis->top ) { in Cyg_Mempool_Implementation__resize_alloc() 609 if (!((pThis->bottom <= p) && (p <= pThis->top))) in Cyg_Mempool_Implementation__free() [all …]
|
| H A D | mem.h | 111 MS_U8* top; member
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/linux_kernel_V2/ |
| H A D | mem_priv.h | 190 cyg_uint8 *top; member 392 pThis->top = (cyg_uint8 *)((MS_VIRT)(base+size+sizeof(struct memdq)) & -pThis->alignment) - in Cyg_Mempool_Implementation__Create() 395 CYG_ASSERT( pThis->top > pThis->bottom , "heap too small" ); in Cyg_Mempool_Implementation__Create() 396 CYG_ASSERT( pThis->top <= (base+size), "top too large" ); in Cyg_Mempool_Implementation__Create() 397 CYG_ASSERT( ((MS_VIRT)(pThis->top+sizeof(struct memdq)) & (pThis->alignment-1))==0, in Cyg_Mempool_Implementation__Create() 410 pThis->freemem = dq->size = pThis->top - pThis->bottom; in Cyg_Mempool_Implementation__Create() 481 CYG_ASSERT( pThis->bottom<=alloced && alloced<=pThis->top, "alloced outside pool" ); in Cyg_Mempool_Implementation__try_alloc() 532 CYG_ASSERT( (pThis->bottom <= alloc_ptr) && (alloc_ptr <= pThis->top), in Cyg_Mempool_Implementation__resize_alloc() 548 if ( (cyg_uint8 *)dq + newsize <= pThis->top ) { in Cyg_Mempool_Implementation__resize_alloc() 610 if (!((pThis->bottom <= p) && (p <= pThis->top))) in Cyg_Mempool_Implementation__free() [all …]
|
| H A D | mem.h | 111 MS_U8* top; member
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/linux/ |
| H A D | mem_priv.h | 189 cyg_uint8 *top; member 387 pThis->top = (cyg_uint8 *)((MS_VIRT)(base+size+sizeof(struct memdq)) & -pThis->alignment) - in Cyg_Mempool_Implementation__Create() 390 CYG_ASSERT( pThis->top > pThis->bottom , "heap too small" ); in Cyg_Mempool_Implementation__Create() 391 CYG_ASSERT( pThis->top <= (base+size), "top too large" ); in Cyg_Mempool_Implementation__Create() 392 CYG_ASSERT( ((MS_VIRT)(pThis->top+sizeof(struct memdq)) & (pThis->alignment-1))==0, in Cyg_Mempool_Implementation__Create() 404 pThis->freemem = dq->size = pThis->top - pThis->bottom; in Cyg_Mempool_Implementation__Create() 473 CYG_ASSERT( (pThis->bottom<=alloced) && (alloced<=pThis->top), "alloced outside pool" ); in Cyg_Mempool_Implementation__try_alloc() 523 CYG_ASSERT( (pThis->bottom <= alloc_ptr) && (alloc_ptr <= pThis->top), in Cyg_Mempool_Implementation__resize_alloc() 539 if ( (cyg_uint8 *)dq + newsize <= pThis->top ) { in Cyg_Mempool_Implementation__resize_alloc() 600 if (!((pThis->bottom <= p) && (p <= pThis->top))) in Cyg_Mempool_Implementation__free() [all …]
|
| H A D | dlmalloc.c | 2543 mchunkptr top; member 2595 #define is_initialized(M) ((M)->top != 0) 3213 if (p != m->dv && p != m->top) { in do_check_free_chunk() 3219 assert (next == m->top || is_inuse(next)); in do_check_free_chunk() 3375 q != m->top && q->head != FENCEPOST_HEAD) { in traverse_and_check() 3412 if (m->top != 0) { /* check top chunk */ in do_check_malloc_state() 3413 do_check_top_chunk(m, m->top); in do_check_malloc_state() 3416 assert(bin_find(m, m->top) == 0); in do_check_malloc_state() 3441 q != m->top && q->head != FENCEPOST_HEAD) { in internal_mallinfo() 3484 q != m->top && q->head != FENCEPOST_HEAD) { in internal_malloc_stats() [all …]
|
| H A D | mem.h | 111 MS_U8* top; member
|
| /utopia/UTPA2-700.0.x/modules/msos/msos/ucos/ |
| H A D | mem_priv.h | 189 cyg_uint8 *top; member 390 pThis->top = (cyg_uint8 *)((cyg_int32)(base+size+sizeof(struct memdq)) & -pThis->alignment) - in Cyg_Mempool_Implementation__Create() 393 CYG_ASSERT( pThis->top > pThis->bottom , "heap too small" ); in Cyg_Mempool_Implementation__Create() 394 CYG_ASSERT( pThis->top <= (base+size), "top too large" ); in Cyg_Mempool_Implementation__Create() 395 CYG_ASSERT( ((cyg_int32)(pThis->top+sizeof(struct memdq)) & (pThis->alignment-1))==0, in Cyg_Mempool_Implementation__Create() 407 pThis->freemem = dq->size = pThis->top - pThis->bottom; in Cyg_Mempool_Implementation__Create() 477 CYG_ASSERT( (pThis->bottom<=alloced) && (alloced<=pThis->top), "alloced outside pool" ); in Cyg_Mempool_Implementation__try_alloc() 527 CYG_ASSERT( (pThis->bottom <= alloc_ptr) && (alloc_ptr <= pThis->top), in Cyg_Mempool_Implementation__resize_alloc() 543 if ( (cyg_uint8 *)dq + newsize <= pThis->top ) { in Cyg_Mempool_Implementation__resize_alloc() 604 if (!((pThis->bottom <= p) && (p <= pThis->top))) in Cyg_Mempool_Implementation__free() [all …]
|
| H A D | dlmalloc.c | 2033 mchunkptr top; member 2072 #define is_initialized(M) ((M)->top != 0) 2629 if (p != m->dv && p != m->top) { in do_check_free_chunk() 2635 assert (next == m->top || cinuse(next)); in do_check_free_chunk() 2791 q != m->top && q->head != FENCEPOST_HEAD) { in traverse_and_check() 2828 if (m->top != 0) { /* check top chunk */ in do_check_malloc_state() 2829 do_check_top_chunk(m, m->top); in do_check_malloc_state() 2830 assert(m->topsize == chunksize(m->top)); in do_check_malloc_state() 2832 assert(bin_find(m, m->top) == 0); in do_check_malloc_state() 2857 q != m->top && q->head != FENCEPOST_HEAD) { in internal_mallinfo() [all …]
|
| H A D | mem.h | 111 MS_U8* top; member
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/rt-tester/ |
| H A D | rt-tester.py | 78 def analyse(val, top, arg): argument 82 if top[0] == "M": 85 argval = top[2] 86 elif top[0] == "O": 93 if top[1] == "eq" and intval == argval: 95 if top[1] == "lt" and intval < argval: 97 if top[1] == "gt" and intval > argval:
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/ |
| H A D | headerdep.pl | 144 my $top = pop @queue; 145 my $name = $top->[-1]->[1]; 148 my $chain = [@$top, [$dep->[0], $dep->[1]]]; 152 if(grep { $_->[1] eq $dep->[1] } @$top) {
|
| /utopia/UTPA2-700.0.x/modules/gpd/drv/gpd/ |
| H A D | dgif_lib.c | 350 MS_U32 top = GifFile->Image.Top; in GetFrameROI() local 364 if (top < image_roi.vstart) in GetFrameROI() 365 top = image_roi.vstart; in GetFrameROI() 366 if (top > image_roi.vstart + image_roi.height) in GetFrameROI() 367 top = image_roi.vstart + image_roi.height; in GetFrameROI() 375 frame_roi.vstart = top - GifFile->Image.Top; in GetFrameROI() 377 frame_roi.height = bottom - top; in GetFrameROI()
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/dtc/ |
| H A D | dtc-lexer.lex.c_shipped | 262 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ 270 * Returns the top of the stack, or NULL. 1632 /* Only push if top exists. Otherwise, replace top. */ 1642 /** Removes and deletes the top of the stack, if present. 1643 * The next element becomes the new top.
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/ |
| H A D | lex.zconf.c_shipped | 280 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ 288 * Returns the top of the stack, or NULL. 1949 /* Only push if top exists. Otherwise, replace top. */ 1959 /** Removes and deletes the top of the stack, if present. 1960 * The next element becomes the new top.
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/genksyms/ |
| H A D | lex.c_shipped | 312 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ 324 * Returns the top of the stack, or NULL. 1830 /* Only push if top exists. Otherwise, replace top. */ 1842 /** Removes and deletes the top of the stack, if present. 1843 * The next element becomes the new top.
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/coccinelle/iterators/ |
| H A D | list_entry_update.cocci | 4 /// that there is a path from the reassignment back to the top of the loop.
|
| /utopia/UTPA2-700.0.x/modules/xc/drv/xc/ |
| H A D | mdrv_sc_scaling.c.0 | 3359 // Main-it-on-top is enabled. 3362 …// If Top window (a window on the top) turn on 8 line (reg_di8lb_en_f2), HW will enable reg_di8lb_… 3371 // When Main-is-top set. Main Line buffer is blong to sub window. 3373 // When Main-is-top set. Sub Line buffer is blong to Main window. 3384 // Main-is-on-top is enabled. 3387 …// If Top window (a window on the top) turn on 8 line (reg_di8lb_en_f2), HW will enable reg_di8lb_… 3396 // When Main-is-top set. Main Line buffer is blong to sub window. 3398 // When Main-is-top set. Sub Line buffer is blong to Main window. 9683 // Set Limit at top of frame buffer 9709 // Set Limit at top of frame buffer [all …]
|
| H A D | mdrv_sc_pip.c.0 | 644 //Fill the line buffer in vertical blanking for the window on top
|
| /utopia/UTPA2-700.0.x/projects/tmplib/include/ |
| H A D | apiVDEC_EX_v2.h | 1369 MS_U32 top; member
|
| H A D | apiVDEC_EX.h | 1376 MS_U32 top; member
|
| /utopia/UTPA2-700.0.x/mxlib/include/ |
| H A D | apiVDEC_EX_v2.h | 1438 MS_U32 top; member
|
| H A D | apiVDEC_EX.h | 2347 MS_U32 top; member
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/ |
| H A D | videodev2.h | 211 __s32 top; member
|
| /utopia/UTPA2-700.0.x/modules/xc/hal/k6lite/xc/include/ |
| H A D | mhal_xc_chip_config.h.0 | 780 #define REG_CKG_IDCLK3 (REG_CHIPTOP_BASE + (0x56<<1) ) // sc dip top clk
|