Searched defs:byte_ptr (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/libcroco/
H A Dcr-utils.c72 guchar *byte_ptr = NULL; local
85 for (byte_ptr = (guchar *) a_in_start;
86 byte_ptr <= a_in_end; byte_ptr++) {
89 if (*byte_ptr <= 0x7F) {
95 c = *byte_ptr;
98 } else if ((*byte_ptr & 0xE0) == 0xC0) {
104 c = *byte_ptr & 0x1F;
107 } else if ((*byte_ptr & 0xF0) == 0xE0) {
113 c = *byte_ptr
578 guchar *byte_ptr = NULL; local
[all...]

Completed in 14 milliseconds