Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:long

1248 "   8. Vowel length plays a phonetic role in the majority of English dialects, and is said to be phonemic in a few dialects, such as Australian English and New Zealand English. In certain dialects of the modern English language, for instance General American, there is allophonic vowel length: vowel phonemes are realized as long vowel allophones before voiced consonant phonemes in the coda of a syllable. Before the Great Vowel Shift, vowel length was phonemically contrastive.\n" +
1297 "In English, intonation patterns are on groups of words, which are called tone groups, tone units, intonation groups or sense groups. Tone groups are said on a single breath and, as a consequence, are of limited length, more often being on average five words long or lasting roughly two seconds. For example:\n" +
3222 " systems, so long as you haven't changed compile-time options about\n" +
3388 " PTR_UINT unsigned long\n" +
3389 " CHUNK_SIZE_T unsigned long\n" +
3500 "static long getpagesize(void);\n" +
3501 "static long getregionsize(void);\n" +
3502 "static void *sbrk(long size);\n" +
3503 "static void *mmap(void *ptr, long size, long prot, long type, long handle, long arg);\n" +
3504 "static long munmap(void *ptr, long size);\n" +
3506 "static void vminfo (unsigned long*free, unsigned long*reserved, unsigned long*committed);\n" +
3507 "static int cpuinfo (int whole, unsigned long*kernel, unsigned long*user);\n" +
3595 "#define CHUNK_SIZE_T unsigned long\n" +
3604 "#define PTR_UINT unsigned long\n" +
3628 " and might be the same width as int or as long\n" +
3630 " - int and long might be 32 or 64 bits, and might be the same width\n" +
3633 " aware of the fact that casting an unsigned int to a wider long does\n" +
4068 " ints. But some others define as unsigned long. If your system\n" +
4224 " long as the value is meaningful), and returns 1 if successful else\n" +
4544 " Automatic trimming is mainly useful in long-lived programs.\n" +
4555 " system-level demands of a long-lived program down to a bare\n" +
4558 " mmap threshold of 192K led to near-minimal long term resource\n" +
4561 " If you are using this malloc in a long-lived program, it should\n" +
4570 " chunks at all. And in well-behaved long-lived programs,\n" +
4583 " (unsigned long)(-1)\n" +
4655 " demands of a long-lived program low.\n" +
5031 " long mcn; \\n" +
5050 " long mcn; \\n" +
5182 " | Unused space (may be 0 bytes long) .\n" +
5211 " MINSIZE bytes long, it is replenished.\n" +
5603 " ((unsigned long)(DEFAULT_TRIM_THRESHOLD) >> 1)\n" +
5976 " assert((long)(sz) - (long)(s) >= 0);\n" +
5977 " assert((long)(sz) - (long)(s + MINSIZE) < 0);\n" +
6154 " long size; /* arg to first MORECORE or mmap call */\n" +
6157 " long correction; /* arg to 2nd MORECORE call */\n" +
6590 " long top_size; /* Amount of top-most memory */\n" +
6591 " long extra; /* Amount to release */\n" +
6592 " long released; /* Amount actually released */\n" +
6626 " released = (long)(current_brk - new_brk);\n" +
7065 " p = chunk_at_offset(p, -((long) prevsize));\n" +
7231 " p = chunk_at_offset(p, -((long) prevsize));\n" +
7563 " -((signed long) alignment)));\n" +
8139 " matter though. Internally, we use \"long\" as arguments, which should\n" +
8269 "static long getpagesize (void) {\n" +
8270 " static long g_pagesize = 0;\n" +
8278 "static long getregionsize (void) {\n" +
8279 " static long g_regionsize = 0;\n" +
8293 " long reserve_size;\n" +
8298 "static int region_list_append (region_list_entry **last, void *base_reserved, long reserve_size) {\n" +
8328 "static void *sbrk (long size) {\n" +
8329 " static long g_pagesize, g_my_pagesize;\n" +
8330 " static long g_regionsize, g_my_regionsize;\n" +
8365 " long allocate_size = size;\n" +
8367 " long to_commit = (char *) g_last->top_allocated + allocate_size - (char *) g_last->top_committed;\n" +
8371 " long commit_size = CEIL (to_commit, g_my_pagesize);\n" +
8373 " long
8377 " long remaining_commit_size = (char *) g_last->top_reserved - (char *) g_last->top_committed;\n" +
8403 " long reserve_size;\n" +
8466 " long start_size = (char *) g_last->top_committed - (char *) g_last->top_allocated;\n" +
8511 " long deallocate_size = - size;\n" +
8512 " /* As long as we have a region to release */\n" +
8515 " long release_size = g_last->reserve_size;\n" +
8539 " long to_decommit = (char *) g_last->top_committed - ((char *) g_last->top_allocated - deallocate_size);\n" +
8542 " long decommit_size = FLOOR (to_decommit, g_my_pagesize);\n" +
8594 "static void *mmap (void *ptr, long size, long prot, long type, long handle, long arg) {\n" +
8595 " static long g_pagesize;\n" +
8596 " static long g_regionsize;\n" +
8633 "static long munmap (void *ptr, long size) {\n" +
8634 " static long g_pagesize;\n" +
8635 " static long g_regionsize;\n" +