tag | line | file | source code |
_s | 117 | arch/i386/math-emu/fpu_proto.h | extern void reg_load_int64(long long *_s, FPU_REG *loaded_data); |
_s | 118 | arch/i386/math-emu/fpu_proto.h | extern void reg_load_int32(long *_s, FPU_REG *loaded_data); |
_s | 119 | arch/i386/math-emu/fpu_proto.h | extern void reg_load_int16(short *_s, FPU_REG *loaded_data); |
_s | 285 | arch/i386/math-emu/reg_ld_str.c | void reg_load_int64(long long *_s, FPU_REG *loaded_data) |
_s | 291 | arch/i386/math-emu/reg_ld_str.c | FPU_verify_area(VERIFY_READ, _s, 8); |
_s | 292 | arch/i386/math-emu/reg_ld_str.c | ((unsigned long *)&s)[0] = get_fs_long((unsigned long *) _s); |
_s | 293 | arch/i386/math-emu/reg_ld_str.c | ((unsigned long *)&s)[1] = get_fs_long(1 + (unsigned long *) _s); |
_s | 316 | arch/i386/math-emu/reg_ld_str.c | void reg_load_int32(long *_s, FPU_REG *loaded_data) |
_s | 322 | arch/i386/math-emu/reg_ld_str.c | FPU_verify_area(VERIFY_READ, _s, 4); |
_s | 323 | arch/i386/math-emu/reg_ld_str.c | s = (long)get_fs_long((unsigned long *) _s); |
_s | 347 | arch/i386/math-emu/reg_ld_str.c | void reg_load_int16(short *_s, FPU_REG *loaded_data) |
_s | 352 | arch/i386/math-emu/reg_ld_str.c | FPU_verify_area(VERIFY_READ, _s, 2); |
_s | 354 | arch/i386/math-emu/reg_ld_str.c | s = (short)get_fs_word((unsigned short *) _s); |