| /xsrc/external/mit/libXft/dist/src/ |
| xftcolor.c | 32 XColor screen, exact; local 34 if (!XAllocNamedColor (dpy, cmap, name, &screen, &exact)) 41 result->color.red = exact.red; 42 result->color.green = exact.green; 43 result->color.blue = exact.blue;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/wgl/ |
| stw_ext_pixelformat.c | 281 BOOL exact; member in struct:attrib_match_info 364 if (ami->exact) { 365 /* For an exact match criteria, if the actual and expected values 404 * points for a mismatch when the match does not have to be exact. 405 * Set a score to 0 if there is a mismatch for an exact match criteria.
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/wgl/ |
| stw_ext_pixelformat.c | 281 BOOL exact; member in struct:attrib_match_info 363 if (ami->exact) { 364 /* For an exact match criteria, if the actual and expected values 403 * points for a mismatch when the match does not have to be exact. 404 * Set a score to 0 if there is a mismatch for an exact match criteria.
|
| /xsrc/external/mit/MesaLib/dist/src/asahi/compiler/ |
| agx_opcodes.py | 46 (exact, mask, length_short, length_long) = description 52 self.exact = exact 217 for (name, exact) in [("any", 0xC000), ("none", 0xC200)]: 218 op("jmp_exec_" + name, (exact, (1 << 16) - 1, 6, _), dests = 0, srcs = 0, 230 exact = 0x42 | (0x0 if is_float else 0x10) | (cf_op << 9) variable 234 op(name, (exact, mask, 6, _), dests = 0, srcs = 2, can_eliminate = False,
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_builtin_builder.c | 233 if (b->exact || 235 const bool exact = b->exact; local 237 b->exact = true; 239 b->exact = exact;
|
| nir_search.h | 138 * value that does *not* have the exact bit set. If unset, the exact bit 143 /** In a replacement, requests that the instruction be marked exact. */ 144 bool exact; member in struct:__anon809
|
| nir_builder.h | 36 /* Whether new ALU instructions will be marked "exact" */ 37 bool exact; member in struct:nir_builder 51 build->exact = false; 75 b.exact = false; 446 instr->exact = build->exact; 581 mov->exact = build->exact;
|
| nir_serialize.c | 614 unsigned exact:1; member in struct:packed_instr::__anon821 825 header.alu.exact = alu->exact; 898 alu->exact = header.alu.exact;
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/ |
| vtn_alu.c | 257 SpvOp opcode, bool *swap, bool *exact, 265 *exact = false; 324 case SpvOpFOrdEqual: *exact = true; return nir_op_feq; 325 case SpvOpFUnordEqual: *exact = true; return nir_op_feq; 328 case SpvOpFOrdNotEqual: *exact = true; return nir_op_fneu; 329 case SpvOpFUnordNotEqual: *exact = true; return nir_op_fneu; 332 case SpvOpFOrdLessThan: *exact = true; return nir_op_flt; 333 case SpvOpFUnordLessThan: *exact = true; return nir_op_flt; 336 case SpvOpFOrdGreaterThan: *swap = true; *exact = true; return nir_op_flt; 337 case SpvOpFUnordGreaterThan: *swap = true; *exact = true; return nir_op_flt 743 bool exact; local 803 bool exact; local [all...] |
| vtn_glsl450.c | 242 bool *exact) 244 *exact = false; 263 case GLSLstd450NMin: *exact = true; return nir_op_fmin; 267 case GLSLstd450NMax: *exact = true; return nir_op_fmax; 390 const bool exact = nb->exact; local 391 nb->exact = true; 395 nb->exact = exact; 422 nb->exact = true 530 const bool exact = nb->exact; local 611 bool exact; local [all...] |
| spirv_to_nir.c | 744 * Technically, the SPIR-V rules require the exact same type ID but this lets 2156 bool exact; local 2157 nir_op op = vtn_nir_alu_op_for_spirv_opcode(b, opcode, &swap, &exact, 2161 /* No SPIR-V opcodes handled through this path should set exact. 2164 assert(!exact); 3021 * It's very careful to specify that the exact operand must be decorated 3398 * It's very careful to specify that the exact operand must be decorated 5058 b->exact = true;
|
| vtn_private.h | 725 bool exact; member in struct:vtn_builder 955 SpvOp opcode, bool *swap, bool *exact,
|
| /xsrc/external/mit/pixman/dist/test/ |
| cover-test.c | 33 * It has a secondary purpose: by setting the env var EXACT (to any value) it 95 /* This is a flag reflecting the environment variable EXACT. It can be used 100 static int exact; variable 197 /* Ensure we test the exact case quite a lot */ 360 if (!exact) 388 if (!exact) 399 if (exact) 442 exact = getenv ("EXACT") != NULL; 443 if (exact) [all...] |
| /xsrc/external/mit/xedit/dist/lisp/re/ |
| rec.c | 725 int exact; local 740 exact = 0; 751 exact = 1; 776 exact = 1; 785 if (exact && mine == 1) 796 else if (exact) {
|
| /xsrc/external/mit/beforelight/dist/ |
| b4light.c | 88 XColor hard, exact; local 90 XAllocNamedColor (display, cmap, "black", &hard, &exact);
|
| /xsrc/external/mit/libXt/dist/src/ |
| PassivGrab.c | 120 * Make an exact copy of the specified detail mask. 201 unsigned short exact; member in struct:_DetailRec 215 if (firstDetail->exact == exception) { 220 if (secondDetail->exact == exception) 223 if (GETBIT(firstDetail->pMask, secondDetail->exact)) 264 if (IdenticalExactDetails(firstDetail->exact, secondDetail->exact, 282 first.exact = pFirstGrab->modifiers; 287 second.exact = pSecondGrab->modifiers; 295 first.exact = pFirstGrab->keybut [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| nir_builder.h | 36 /* Whether new ALU instructions will be marked "exact" */ 37 bool exact; member in struct:nir_builder 47 build->exact = false; 60 build->exact = false; 396 instr->exact = build->exact; 504 mov->exact = build->exact; 518 mov->exact = build->exact; [all...] |
| /xsrc/external/mit/libXaw/dist/src/ |
| Pixmap.c | 731 XColor color, exact; local 746 &color, &exact)) 755 &color, &exact))
|
| TextSink.c | 1528 XColor color, exact; local 1583 argval->value, &color, &exact)) { 1601 argval->value, &color, &exact)) {
|
| /xsrc/external/mit/xedit/dist/lisp/mp/ |
| mpi.c | 830 /* exact division */ 841 /* exact division */ 946 int exact; local 973 exact = op->size == 1 && (op->digs[0] == 1 || op->digs[0] == 0); 976 return (exact == 1); 1002 exact = mpi_cmpi(&rem, 0) == 0; 1007 exact = 0; 1027 return (exact); 1038 int exact; local 1051 exact = op->size == 1 && (op->digs[0] == 1 || op->digs[0] == 0) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/spirv/ |
| vtn_private.h | 634 bool exact; member in struct:vtn_builder
|
| /xsrc/external/mit/xterm/dist/ |
| screen.c | 2823 Bool exact = (screen->cur_decsace == 2); local 2827 (exact 2839 int left = ((exact || (row == top)) 2842 int right = ((exact || (row == bottom)) 2853 if (exact) { 2935 (exact ? (target->left - 1) : getMinCol(screen)), 2937 (exact
|
| /xsrc/external/mit/xedit/dist/lisp/ |
| mathimp.c | 1418 int exact; local 1426 exact = mpi_sqrt(&bignum, RBI(real)); 1432 exact = mpi_sqrt(&bignum, &tmp); 1435 if (exact) {
|
| /xsrc/external/mit/xorg-server/dist/include/ |
| inputstr.h | 170 unsigned int exact; member in struct:_DetailRec
|
| /xsrc/external/mit/xorg-server.old/dist/include/ |
| inputstr.h | 156 unsigned int exact; member in struct:_DetailRec
|