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 97 int string_words = len / 4; local
102 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN);
103 if (string_words == NV04_PFIFO_MAX_PACKET_LEN)
104 data_words = string_words;
106 data_words = string_words + !!(len & 3);
108 if (string_words)
109 PUSH_DATAp(push, str, string_words);
110 if (string_words != data_words) {
112 memcpy(&data, &str[string_words * 4], len & 3)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_context.c 114 int string_words = len / 4; local
119 string_words = MIN2(string_words, NV04_PFIFO_MAX_PACKET_LEN);
120 if (string_words == NV04_PFIFO_MAX_PACKET_LEN)
121 data_words = string_words;
123 data_words = string_words + !!(len & 3);
125 if (string_words)
126 PUSH_DATAp(push, str, string_words);
127 if (string_words != data_words) {
129 memcpy(&data, &str[string_words * 4], len & 3)
    [all...]

Completed in 1943 milliseconds