HomeSort by: relevance | last modified time | path
    Searched defs:expected_bytes (Results 1 - 3 of 3) sorted by relevancy

  /xsrc/external/mit/xorg-server.old/dist/test/
input.c 819 int expected_bytes; local
820 expected_bytes = (i + 7)/8;
824 g_assert(expected_bytes == bits_to_bytes(i));
839 int expected_bytes; local
840 expected_bytes = ((i + 3)/4) * 4;
844 g_assert(expected_bytes == pad_to_int32(i));
  /xsrc/external/mit/xorg-server/dist/test/
input.c 939 int expected_bytes; local
941 expected_bytes = (i + 7) / 8;
945 assert(expected_bytes == bits_to_bytes(i));
963 int expected_bytes; local
965 expected_bytes = ((i + 3) / 4) * 4;
969 assert(expected_bytes == pad_to_int32(i));
976 int expected_bytes = (((i + 3) / 4) * 4) - i; local
980 assert(padding_for_int32(i) == expected_bytes);
  /xsrc/external/mit/xf86-video-amdgpu/dist/src/
drmmode_display.c 1039 size_t expected_bytes = 0; local
1047 expected_bytes = sizeof(struct drm_color_lut) *
1060 (size_t)(value->size << 1) != expected_bytes)
1066 expected_bytes = sizeof(struct drm_color_lut) *
1072 (size_t)(value->size << 1) != expected_bytes)
1078 expected_bytes = sizeof(struct drm_color_ctm);
1083 (size_t)(value->size << 2) != expected_bytes)
1094 *blob_data = malloc(expected_bytes);
1097 memcpy(*blob_data, value->data, expected_bytes);
1121 size_t expected_bytes = 0 local
    [all...]

Completed in 9 milliseconds