Lines Matching refs:temp
219 unsigned char temp[sizeof(uint32_t)];
238 temp[0] = 0;
287 temp[1] = (uint8_t) (ch >> 16 & 0x1F);
288 temp[2] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
289 temp[3] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
293 *(myTarget++) = temp[indexToWrite];
296 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
322 unsigned char temp[sizeof(uint32_t)];
342 temp[0] = 0;
391 temp[1] = (uint8_t) (ch >> 16 & 0x1F);
392 temp[2] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
393 temp[3] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
397 *(myTarget++) = temp[indexToWrite];
401 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
405 offsetNum = offsetNum + 1 + (temp[1] != 0);
697 unsigned char temp[sizeof(uint32_t)];
716 temp[3] = 0;
769 temp[2] = (uint8_t) (ch >> 16 & 0x1F);
770 temp[1] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
771 temp[0] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
777 *(myTarget++) = temp[indexToWrite];
781 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
807 unsigned char temp[sizeof(uint32_t)];
828 temp[3] = 0;
882 temp[2] = (uint8_t) (ch >> 16 & 0x1F);
883 temp[1] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
884 temp[0] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
890 *(myTarget++) = temp[indexToWrite];
895 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
899 offsetNum = offsetNum + 1 + (temp[2] != 0);