Lines Matching defs:src
1531 const unsigned char* src = pixels;
1534 *dst++ = IM_COL32(255, 255, 255, (unsigned int)(*src++));
1577 static void Decode85(const unsigned char* src, unsigned char* dst)
1579 while (*src)
1581 unsigned int tmp = Decode85Byte(src[0]) + 85*(Decode85Byte(src[1]) + 85*(Decode85Byte(src[2]) + 85*(Decode85Byte(src[3]) + 85*Decode85Byte(src[4]))));
1583 src += 5;
2507 void ImFont::AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst)
2514 if (src >= index_size && dst >= index_size) // both 'dst' and 'src' don't exist -> no-op
2518 IndexLookup[dst] = (src < index_size) ? IndexLookup.Data[src] : (ImWchar)-1;
2519 IndexAdvanceX[dst] = (src < index_size) ? IndexAdvanceX.Data[src] : 1.0f;