Home | History | Annotate | Download | only in common

Lines Matching refs:temp

220     unsigned char temp[sizeof(uint32_t)];
239 temp[0] = 0;
288 temp[1] = (uint8_t) (ch >> 16 & 0x1F);
289 temp[2] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
290 temp[3] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
294 *(myTarget++) = temp[indexToWrite];
297 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
323 unsigned char temp[sizeof(uint32_t)];
343 temp[0] = 0;
392 temp[1] = (uint8_t) (ch >> 16 & 0x1F);
393 temp[2] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
394 temp[3] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
398 *(myTarget++) = temp[indexToWrite];
402 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
406 offsetNum = offsetNum + 1 + (temp[1] != 0);
698 unsigned char temp[sizeof(uint32_t)];
717 temp[3] = 0;
770 temp[2] = (uint8_t) (ch >> 16 & 0x1F);
771 temp[1] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
772 temp[0] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
778 *(myTarget++) = temp[indexToWrite];
782 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
808 unsigned char temp[sizeof(uint32_t)];
829 temp[3] = 0;
883 temp[2] = (uint8_t) (ch >> 16 & 0x1F);
884 temp[1] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
885 temp[0] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
891 *(myTarget++) = temp[indexToWrite];
896 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
900 offsetNum = offsetNum + 1 + (temp[2] != 0);