Lines Matching refs:tmp
75 BC_VECTOR tmp; in bc_parse_chunk_chars() local
76 memcpy(&tmp, str, sizeof(tmp)); in bc_parse_chunk_chars()
78 tmp = BC_BSWAP(tmp); in bc_parse_chunk_chars()
81 BC_VECTOR lower_digits = (tmp & 0x0f000f00) >> 8; in bc_parse_chunk_chars()
82 BC_VECTOR upper_digits = (tmp & 0x000f000f) * 10; in bc_parse_chunk_chars()
84 tmp = lower_digits + upper_digits; in bc_parse_chunk_chars()
86 lower_digits = (tmp & 0x00ff0000) >> 16; in bc_parse_chunk_chars()
87 upper_digits = (tmp & 0x000000ff) * 100; in bc_parse_chunk_chars()
94 BC_VECTOR tmp; in bc_parse_chunk_chars() local
95 memcpy(&tmp, str, sizeof(tmp)); in bc_parse_chunk_chars()
97 tmp = BC_BSWAP(tmp); in bc_parse_chunk_chars()
100 BC_VECTOR lower_digits = (tmp & 0x0f000f000f000f00) >> 8; in bc_parse_chunk_chars()
101 BC_VECTOR upper_digits = (tmp & 0x000f000f000f000f) * 10; in bc_parse_chunk_chars()
103 tmp = lower_digits + upper_digits; in bc_parse_chunk_chars()
105 lower_digits = (tmp & 0x00ff000000ff0000) >> 16; in bc_parse_chunk_chars()
106 upper_digits = (tmp & 0x000000ff000000ff) * 100; in bc_parse_chunk_chars()
108 tmp = lower_digits + upper_digits; in bc_parse_chunk_chars()
110 lower_digits = (tmp & 0x0000ffff00000000) >> 32; in bc_parse_chunk_chars()
111 upper_digits = (tmp & 0x000000000000ffff) * 10000; in bc_parse_chunk_chars()