Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:System

1067 "Writing system: 	Latin (English variant) \n" +
1107 " * 7 Writing system\n" +
1124 "Whatever their origin, these Germanic dialects eventually coalesced to a degree (there remained geographical variation) and formed what is today called Old English. Old English loosely resembles some coastal dialects in what are now northwest Germany and the Netherlands (i.e., Frisia). Throughout the history of written Old English, it retained a synthetic structure closer to that of Proto-Indo-European, largely adopting West Saxon scribal conventions, while spoken Old English became increasingly analytic in nature, losing the more complex noun case system, relying more heavily on prepositions and fixed word order to convey meaning. This is evident in the Middle English period, when literature was to an increasing extent recorded with spoken dialectal variation intact, after written Old English lost its status as the literary language of the nobility. It is postulated that the early development of the language was influenced by a Celtic substratum.[5][6] Later, it was influenced by the related North Germanic language Old Norse, spoken by the Vikings who settled mainly in the north and the east coast down to London, the area known as the Danelaw.\n" +
1258 "This is the English Consonantal System using symbols from the International Phonetic Alphabet (IPA).\n" +
3220 " defined in your system include files. The .h file contains only the\n" +
3242 " * For very large requests (>= 128KB by default), it relies on system\n" +
3307 " sizeof(size_t) bytes plus the remainder from a system page (the\n" +
3315 " that `size_t' may be defined on a system as either a signed or\n" +
3319 " default used to obtain memory from system) accepts signed\n" +
3328 " also fail because a system is out of memory.)\n" +
3344 " direct calls to MORECORE or other system-level allocators.\n" +
3377 " malloc_getpagesize derived from system #includes, or 4096 if not\n" +
3430 "// In debugging builds, use the system malloc for its debugging features.\n" +
3544 "/* define LACKS_UNISTD_H if your system does not have a <unistd.h>. */\n" +
3552 "/* define LACKS_SYS_PARAM_H if your system does not have a <sys/param.h>. */\n" +
3682 " aggressively reduce system-level memory footprint when releasing\n" +
3699 " of a program, using your regular system malloc elsewhere.\n" +
3872 " from the system. See below for general guidance on writing\n" +
3908 " cannot release space back to the system when given negative\n" +
3919 " operating system immediately after a free(). Also, if mmap\n" +
3921 " MORECORE fails to provide space from system.\n" +
3955 " there is still space available on system. On systems for which\n" +
3984 " The system page size. To the extent possible, this malloc manages\n" +
3985 " memory from the system in page-size units. Note that this value is\n" +
3990 " getpagesize.h. If none of the system-probes here apply, a value of\n" +
4050 " statistics. It should work on any SVID/XPG compliant system that has\n" +
4068 " ints. But some others define as unsigned long. If your system\n" +
4070 " you must #include your system version and #define\n" +
4083 " int arena; /* non-mmapped space allocated from system */\n" +
4136 " back unused memory to the system, thus reducing program footprint.\n" +
4177 " the system supports MREMAP (currently only linux).\n" +
4209 " size of the system. If the pagesize is unknown, 4096 is used.\n" +
4251 (" arena: current total non-mmapped bytes allocated from system\n" +
4263 " back to system via malloc_trim. (\"ideally\" means that\n" +
4428 " If possible, gives memory back to the system (via negative\n" +
4431 " memory to potentially reduce the system-level memory requirements\n" +
4435 " the system.\n" +
4443 " from the system.\n" +
4478 " Prints on stderr the amount of space obtained from the system (both\n" +
4488 " The reported current and maximum system memory can be inaccurate if\n" +
4489 " a program makes other calls to system memory allocation functions\n" +
4548 " enough so that your overall system performance would improve by\n" +
4554 " system. Between these two, it is often possible to keep\n" +
4555 " system-level demands of a long-lived program down to a bare\n" +
4564 " (program) running on your system. Releasing this much memory\n" +
4575 " protection against the system-level effects of carrying around\n" +
4595 " then freeing it at program startup, in an attempt to reserve system\n" +
4597 " since that memory will immediately be returned to the system.\n" +
4618 " so that the end of the arena is always a system page boundary.\n" +
4647 " system. A request serviced through mmap is never reused by any\n" +
4648 " other request (at least not directly; the system may just so\n" +
4654 " to the system, which helps keep the system level memory\n" +
4669 " system memory management support routines which may vary in\n" +
4672 " malloc steps is faster than going through a system's mmap.\n" +
5526 " released back to the system if it is very large (see\n" +
5531 " need to do so when getting memory from system, so we make\n" +
5552 "/* Conservatively use 32 bits per map word, even if on 64bit system */\n" +
6135 "/* ----------- Routines dealing with system allocation -------------- */\n" +
6138 " sysmalloc handles malloc cases requiring more memory from the system.\n" +
6174 " malloc from scratch rather than getting memory from system. This\n" +
6191 " the system supports mmap, and there are few enough currently\n" +
6575 " to the system (via negative arguments to sbrk) if there is unused\n" +
6969 " be extended to be as large as necessary (up to system\n" +
6994 " If no space in top, relay to handle system-dependent cases\n" +
8012 " fprintf(stderr, \"max system bytes = %10lu\\n\",\n" +
8014 " fprintf(stderr, \"system bytes = %10lu\\n\",\n" +
8144 " system allocator. This is a useful backup strategy for systems with\n" +