| /xsrc/external/mit/mesa-demos/dist/src/egl/openvg/trivial/ |
| H A D | stroke2.c | 9 VGPath lines; variable in typeref:typename:VGPath 139 lines = vgCreatePath(VG_PATH_FORMAT_STANDARD, VG_PATH_DATATYPE_F, 1, 144 vgAppendPathData(lines, 6, lineCmds, lineCoords); 146 vgAppendPathData(lines, 1, moveCmd, moveCoords); 147 vgAppendPathData(lines, 1, sccCmd, arcCoords); 148 vgAppendPathData(lines, 1, moveCmd, moveCoords); 149 vgAppendPathData(lines, 1, scCmd, arcCoords); 150 vgAppendPathData(lines, 1, moveCmd, moveCoords); 151 vgAppendPathData(lines, 1, lccCmd, arcCoords); 152 vgAppendPathData(lines, [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/codegen/ |
| H A D | gen_archrast.py | 29 def parse_event_fields(lines, idx, event_dict): 31 Parses lines from a proto file that contain an event definition and stores it in event_dict 38 while not end_of_event and idx < len(lines): 39 line = lines[idx].rstrip() 60 def parse_enums(lines, idx, event_dict): 62 Parses lines from a proto file that contain an enum definition and stores it in event_dict 69 while not end_of_enum and idx < len(lines): 70 line = lines[idx].rstrip() 107 lines=f.readlines() 112 while idx < len(lines) [all...] |
| H A D | gen_llvm_types.py | 109 lines = input_file.readlines() 113 for idx in range(len(lines)): 114 line = lines[idx].rstrip() 139 while not end_of_struct and idx < len(lines)-1: 141 line = lines[idx].rstrip() 164 while not end_of_struct and idx < len(lines)-1: 166 line = lines[idx].rstrip()
|
| H A D | gen_llvm_ir_macros.py | 99 lines = input_file.readlines() 102 while idx < len(lines) - 1: 103 line = lines[idx].rstrip() 112 func_sig = lines[idx-2].rstrip() + line 122 line = lines[idx].rstrip()
|
| /xsrc/external/mit/fontconfig/dist/doc/ |
| H A D | extract-man-list.py | 51 # split at '@' and remove empty lines (keep it simple instead of doing fancy 53 lines = [line for line in chunk.split('@') if line.strip()] 57 while lines: 58 tag = lines.pop(0).strip() 63 text = lines.pop(0).strip()
|
| H A D | edit-sgml.py | 69 # split at '@' and remove empty lines (keep it simple instead of doing fancy 71 lines = [line for line in chunk.split('@') if line.strip()] variable 75 while lines: 76 tag = lines.pop(0).strip() 81 text = lines.pop(0).strip() 112 sys.exit('Template lines starting with @ are expected to end with @, please fix me!')
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/codegen/ |
| H A D | gen_archrast.py | 28 def parse_event_fields(lines, idx, event_dict): 30 Parses lines from a proto file that contain an event definition and stores it in event_dict 37 while not end_of_event and idx < len(lines): 38 line = lines[idx].rstrip() 67 def parse_enums(lines, idx, event_dict): 69 Parses lines from a proto file that contain an enum definition and stores it in event_dict 76 while not end_of_enum and idx < len(lines): 77 line = lines[idx].rstrip() 167 lines = f.readlines() 171 while idx < len(lines) [all...] |
| H A D | gen_llvm_types.py | 108 lines = input_file.readlines() 112 for idx in range(len(lines)): 113 line = lines[idx].rstrip() 138 while not end_of_struct and idx < len(lines)-1: 140 line = lines[idx].rstrip() 163 while not end_of_struct and idx < len(lines)-1: 165 line = lines[idx].rstrip()
|
| H A D | gen_llvm_ir_macros.py | 98 lines = input_file.readlines() 102 while idx < len(lines) - 1: 103 line = lines[idx].rstrip() 120 func_sig = lines[idx-2].rstrip() + line 130 line = lines[idx].rstrip()
|
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | log.h | 85 void _mesa_log_multiline(enum mesa_log_level level, const char *tag, const char *lines); 86 #define mesa_log_multiline(level, lines) _mesa_log_multiline(level, (MESA_LOG_TAG), lines)
|
| H A D | log.c | 130 /* Clear out the lines we printed and move any trailing chars to the start. */ 150 _mesa_log_multiline(enum mesa_log_level level, const char *tag, const char *lines) argument 155 .msg = strdup(lines), 156 .pos = strlen(lines),
|
| /xsrc/external/mit/MesaLib/dist/src/egl/ |
| H A D | egl-entrypoint-check.py | 67 lines = header.readlines() 70 for line in lines:
|
| /xsrc/external/mit/MesaLib.old/dist/scripts/ |
| H A D | get_reviewer.pl | 362 next if (/^\s*$/); #skip empty lines 844 contain a thousand lines, 5 trivial commits may modify a single line. 855 Multiple lines and # comments are allowed. 1292 my @lines = (); 1296 @lines = split("\n", $output); 1298 return @lines; 1303 my @lines = (); 1306 @lines = split("\n", $output); 1308 return @lines; 1333 my @lines [all...] |
| /xsrc/external/mit/xf86-video-nouveau/dist/src/ |
| H A D | nouveau_exa.c | 257 const int lines = (h > 2047) ? 2047 : h; local in function:nouveau_exa_download_from_screen 261 if (nouveau_exa_scratch(pNv, lines * tmp_pitch, 265 if (!NVAccelM2MF(pNv, w, lines, cpp, 0, tmp_offset, 269 lines, 0, 0)) 274 memcpy(dst, tmp->map + tmp_offset, dst_pitch * lines); 275 dst += dst_pitch * lines; 278 for (i = 0; i < lines; i++) { 286 h -= lines; 287 y += lines; 342 const int lines local in function:nouveau_exa_upload_to_screen [all...] |
| /xsrc/external/mit/xman/dist/ |
| H A D | ScrollByLP.h | 83 int lines; /* Total number of line in the file. */ member in struct:_ScrollByLinePart 84 int num_visible_lines; /* Number of lines visible */
|
| /xsrc/external/mit/fontconfig/dist/fc-lang/ |
| H A D | fc-lang.py | 85 lines = [] 90 lines += read_orth_file(include_fn) 95 # skip empty lines 97 lines += [(file_name, num, line)] 99 return lines 111 def parse_orth_file(file_name, lines): 113 for fn, num, line in lines: 178 lines = read_orth_file(fn) variable 179 charset = parse_orth_file(fn, lines)
|
| /xsrc/external/mit/MesaLib/dist/.gitlab-ci/bare-metal/ |
| H A D | fastboot_run.py | 53 for line in self.ser.lines(): 70 for line in self.ser.lines():
|
| H A D | poe_run.py | 51 for line in self.ser.lines(): 60 for line in self.ser.lines():
|
| /xsrc/external/mit/pixman/dist/pixman/ |
| H A D | pixman-ssse3.c | 46 line_t lines[2]; member in struct:__anon664cc3cd0208 174 line0 = &info->lines[y0 & 0x01]; 175 line1 = &info->lines[y1 & 0x01]; 298 * be asked to fetch lines in the [0, height) interval 300 info->lines[0].y = -1; 301 info->lines[0].buffer = ALIGN (&(info->data[0])); 302 info->lines[1].y = -1; 303 info->lines[1].buffer = ALIGN (info->lines[0].buffer + width);
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/ |
| H A D | xf86AutoConfig.c | 103 * into lines, and appends those lines it to builtinConfig. 107 AppendToList(const char *s, const char ***list, int *lines) argument 113 (*lines)++; 114 *list = xnfrealloc(*list, (*lines + 1) * sizeof(**list)); 118 (*list)[*lines - 1] = newstr; 119 (*list)[*lines] = NULL; 125 FreeList(const char ***list, int *lines) argument 129 for (i = 0; i < *lines; i++) { 134 *lines [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/ |
| H A D | xf86AutoConfig.c | 105 * into lines, and appends those lines it to builtinConfig. 109 AppendToList(const char *s, const char ***list, int *lines) argument 115 (*lines)++; 116 *list = xnfreallocarray(*list, *lines + 1, sizeof(**list)); 120 (*list)[*lines - 1] = newstr; 121 (*list)[*lines] = NULL; 127 FreeList(const char ***list, int *lines) argument 131 for (i = 0; i < *lines; i++) { 136 *lines [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/ |
| H A D | s_tritemp.h | 130 GLint lines; /* number of lines to be sampled on this edge */ member in struct:NAME::__anon929b69fe0108 257 eMaj.lines = FixedToInt(FixedCeil(vMax_fy - eMaj.fsy)); 258 if (eMaj.lines > 0) { 270 eTop.lines = FixedToInt(FixedCeil(vMax_fy - eTop.fsy)); 271 if (eTop.lines > 0) { 280 eBot.lines = FixedToInt(FixedCeil(vMid_fy - eBot.fsy)); 281 if (eBot.lines > 0) { 533 int lines; local in function:NAME 540 lines [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/ |
| H A D | s_tritemp.h | 131 GLint lines; /* number of lines to be sampled on this edge */ member in struct:NAME::__anonea9e26f10108 258 eMaj.lines = FixedToInt(FixedCeil(vMax_fy - eMaj.fsy)); 259 if (eMaj.lines > 0) { 271 eTop.lines = FixedToInt(FixedCeil(vMax_fy - eTop.fsy)); 272 if (eTop.lines > 0) { 281 eBot.lines = FixedToInt(FixedCeil(vMid_fy - eBot.fsy)); 282 if (eBot.lines > 0) { 534 int lines; local in function:NAME 541 lines [all...] |
| /xsrc/external/mit/MesaLib/dist/src/amd/registers/ |
| H A D | makeregheader.py | 188 # Merge register lines 189 lines = self.register_lines 190 lines.sort(key=lambda line: (line.address, line.name)) 193 for line in lines: 201 # Merge field lines 202 lines = self.field_lines 203 lines.sort(key=lambda line: (line.address, line.name)) 206 for line in lines: 233 # Merge value lines 234 lines [all...] |
| /xsrc/external/mit/ctwm/dist/ |
| H A D | icons_builtin.c | 87 int lines, dly; local in function:CreateMenuIcon 140 lines = 3; 142 lines--; 144 dly = lh / (lines - 1); 145 while(lines--) {
|