HomeSort by relevance Sort by last modified time
    Searched refs:string_words (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_context.c 100 int string_words = len / 4; local
105 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN);
106 if (string_words == NV04_PFIFO_MAX_PACKET_LEN)
107 data_words = string_words;
109 data_words = string_words + !!(len & 3);
111 if (string_words)
112 PUSH_DATAp(push, str, string_words);
113 if (string_words != data_words) {
115 memcpy(&data, &str[string_words * 4], len & 3)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_context.c 117 int string_words = len / 4; local
122 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN);
123 if (string_words == NV04_PFIFO_MAX_PACKET_LEN)
124 data_words = string_words;
126 data_words = string_words + !!(len & 3);
128 if (string_words)
129 PUSH_DATAp(push, str, string_words);
130 if (string_words != data_words) {
132 memcpy(&data, &str[string_words * 4], len & 3)
    [all...]

Completed in 268 milliseconds