Lines Matching refs:ucp
883 u_char *ucp; in x11_open_helper() local
891 ucp = buffer_ptr(b); in x11_open_helper()
892 if (ucp[0] == 0x42) { /* Byte order MSB first. */ in x11_open_helper()
893 proto_len = 256 * ucp[6] + ucp[7]; in x11_open_helper()
894 data_len = 256 * ucp[8] + ucp[9]; in x11_open_helper()
895 } else if (ucp[0] == 0x6c) { /* Byte order LSB first. */ in x11_open_helper()
896 proto_len = ucp[6] + 256 * ucp[7]; in x11_open_helper()
897 data_len = ucp[8] + 256 * ucp[9]; in x11_open_helper()
900 ucp[0]); in x11_open_helper()
911 memcmp(ucp + 12, x11_saved_proto, proto_len) != 0) { in x11_open_helper()
917 timingsafe_bcmp(ucp + 12 + ((proto_len + 3) & ~3), in x11_open_helper()
933 memcpy(ucp + 12 + ((proto_len + 3) & ~3), in x11_open_helper()