Lines Matching defs:src
2054 const unsigned char* src = pixels;
2057 *dst++ = IM_COL32(255, 255, 255, (unsigned int)(*src++));
2104 static void Decode85(const unsigned char* src, unsigned char* dst)
2106 while (*src)
2108 unsigned int tmp = Decode85Byte(src[0]) + 85 * (Decode85Byte(src[1]) + 85 * (Decode85Byte(src[2]) + 85 * (Decode85Byte(src[3]) + 85 * Decode85Byte(src[4]))));
2110 src += 5;
3290 void ImFont::AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst)
3297 if (src >= index_size && dst >= index_size) // both 'dst' and 'src' don't exist -> no-op
3301 IndexLookup[dst] = (src < index_size) ? IndexLookup.Data[src] : (ImWchar)-1;
3302 IndexAdvanceX[dst] = (src < index_size) ? IndexAdvanceX.Data[src] : 1.0f;