HomeSort by: relevance | last modified time | path
    Searched defs:exc (Results 1 - 4 of 4) sorted by relevancy

  /src/lib/libm/src/
k_standard.c 86 struct exception exc; local in function:__kernel_standard
97 exc.arg1 = x;
98 exc.arg2 = y;
103 exc.type = DOMAIN;
104 exc.name = type < 100 ? "acos" : "acosf";
105 exc.retval = zero;
107 exc.retval = zero/zero;
109 } else if (!matherr(&exc)) {
119 exc.type = DOMAIN;
120 exc.name = type < 100 ? "asin" : "asinf"
    [all...]
  /src/sys/arch/sandpoint/stand/altboot/
exception.c 56 uint8_t *exc; local in function:init_vectors
60 for (exc = (uint8_t *)0x100; exc <= (uint8_t *)0x1400; exc += 0x100)
61 memcpy(exc, trap, trap_end - trap);
  /src/sys/arch/powerpc/ibm4xx/
ibm4xx_machdep.c 270 for (uintptr_t exc = EXC_RSVD; exc <= EXC_LAST; exc += 0x100) { local in function:ibm4xx_init
271 trap_copy(defaulttrap, exc, (uintptr_t)&defaultsize);
  /src/sys/arch/powerpc/oea/
oea_machdep.c 142 uintptr_t exc, exc_base; local in function:oea_init
203 for (exc = exc_base; exc <= exc_base + EXC_LAST; exc += 0x100) {
204 switch (exc - exc_base) {
207 memcpy((void *)exc, trapcode, size);
218 memcpy((void *)exc, sctrap, size);
222 memcpy((void *)exc, alitrap, size);
228 memcpy((void *)exc, dsi601trap, size);
234 memcpy((void *)exc, alitrap, size)
    [all...]

Completed in 12 milliseconds