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

  /xsrc/external/mit/MesaLib/dist/src/util/tests/
dag_test.cpp 33 struct util_dynarray expect, actual; member in class:dag_test
41 util_dynarray_init(&actual, mem_ctx);
133 #define TEST_CHECK() EXPECT_PRED_FORMAT2(int_dynarrays_equal_pred, &expect, &actual)
149 dag_traverse_bottom_up(dag, output_cb, &actual);
173 dag_traverse_bottom_up(dag, output_cb, &actual);
201 dag_traverse_bottom_up(dag, output_cb, &actual);
227 dag_traverse_bottom_up(dag, output_cb, &actual);
  /xsrc/external/mit/MesaLib/dist/src/util/
u_atomic.h 246 uint32_t actual = p_atomic_read(v); local
249 expected = actual;
250 actual = p_atomic_cmpxchg(v, expected, i);
251 } while (expected != actual);
252 return actual;
257 uint64_t actual = p_atomic_read(v); local
260 expected = actual;
261 actual = p_atomic_cmpxchg(v, expected, i);
262 } while (expected != actual);
263 return actual;
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/util/
u_atomic.h 229 uint32_t actual = p_atomic_read(v); local
232 expected = actual;
233 actual = p_atomic_cmpxchg(v, expected, i);
234 } while (expected != actual);
235 return actual;
240 uint64_t actual = p_atomic_read(v); local
243 expected = actual;
244 actual = p_atomic_cmpxchg(v, expected, i);
245 } while (expected != actual);
246 return actual;
    [all...]
  /xsrc/external/mit/xterm/dist/
charsets.c 612 #define DFTMAP() result = (actual | 0x80)
613 #define DFT_94(chr) result = ((actual) & 0x7f)
614 #define DFT_96(chr) result = ((actual) | 0x80)
647 int actual = (int) chr; local
charclass.c 439 int actual = CharacterClass(lo); local
440 if (actual != expect)
443 class_name(actual));
trace.c 973 int actual; local
976 actual = ((gi.xOff + FontWidth(screen) - 1)
988 actual, expect, hijack,
989 ((actual != expect)
990 ? ((actual == hijack)
screen.c 372 * first one is the actual character array, the second one is the attributes,
1731 * showing the actual extent of the text that'll be cut. If
2138 * Discount that here (to obtain the actual rows/columns), and save
2555 IChar actual = (IChar) value; local
2559 visibleIChars(&actual, 1), flags));
2618 ld->charData[col] = actual;
3281 * to the output of xprop. The actual list (ignore the manpage, which refers
button.c 562 * The actual check for the shift-mask, to see if it should tell xterm to
1835 sameItem(const char *actual, const char *wanted)
1838 size_t have = strlen(actual);
1842 if (!strncmp(actual, wanted, have)) {
3934 * set the cell to the actual row/column values.
4001 int actual = cellToColumn(screen, startc); local
4034 if (start_col <= actual &&
4035 actual <= finis_col) {
main.c 1541 char *actual = x_strdup(name); local
1543 result = XInternAtom(display, actual, False);
1545 AtomCache[NumKnownAtoms].name = actual;
2203 unsigned actual_speed; /* the actual speed */
charproc.c 7096 int actual = ((screen->cursor_blink == cbTrue || local
7103 result = actual ^ wanted;
7105 result = actual | wanted;
9666 * colors, such as cursor color, use the actual foreground/background value
10536 TRACE((" Actual foreground 0x%06lx\n", wnew->old_foreground));
10537 TRACE((" Actual background 0x%06lx\n", wnew->old_background));
fontutils.c 622 TRACE(("...actual size %dx%d (ascent %d, descent %d)\n",
782 char *actual = NULL; local
785 if (get_font_name_props(dpy, fs, &actual) == NULL)
788 got = same_font_name(requested, actual);
789 free(actual);
1217 compareXCharStruct(const char *tag, XCharStruct * actual, XCharStruct * expect)
1220 if (actual->field != expect->field) \
1221 ReportFonts("\t\t%s %s differs: %d\n", tag, #field, actual->field)
1592 TRACE(("...actual width %d\n", MaxWidthOf(infoOut->fs)));
2509 TRACE(("Xft metrics %s[%d] = %d (%d,%d)%s advance %d, actual %d%s%s\n",
4391 int actual; local
4539 XftFont *actual = NULL; local
4766 unsigned actual = 0; local
    [all...]
misc.c 1126 * Try to find the actual program which is running in the child process.
3465 * Enum corresponding to the actual OSC codes rather than the internal
7496 char *actual = argv[my_index]; local
7503 TRACE(("...actual %s\n", actual));
7504 if (IsEmpty(actual))
7516 if (strlen(expect) >= strlen(actual))
7518 if (strncmp(expect, actual, strlen(expect)))
7521 if (strcmp(actual, expect))
8251 int actual = (value <= 0) ? pushed : (value - 1) local
8282 int actual = (value <= 0) ? popped : (value - 1); local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
ir_function.cpp 39 * \param list_b Actual parameters passed to the function.
65 const ir_rvalue *const actual = (ir_rvalue *) node_b; local
67 if (param->type == actual->type)
70 /* Try to find an implicit conversion from actual to param. */
87 !actual->type->can_implicitly_convert_to(param->type, state))
92 if (!param->type->can_implicitly_convert_to(actual->type, state))
137 const ir_rvalue *actual)
144 to_type = actual->type;
146 from_type = actual->type;
318 * multiple ways to apply these conversions to the actual arguments of
    [all...]
ast_function.cpp 80 * formal (\c ir_variable) or actual (\c ir_rvalue)
109 const ir_variable *formal, const ir_variable *actual)
120 if (actual->data.memory_coherent && !formal->data.memory_coherent) {
127 if (actual->data.memory_volatile && !formal->data.memory_volatile) {
134 if (actual->data.memory_restrict && !formal->data.memory_restrict) {
141 if (actual->data.memory_read_only && !formal->data.memory_read_only) {
148 if (actual->data.memory_write_only && !formal->data.memory_write_only) {
217 * Verify that 'out' and 'inout' actual parameters are lvalues. Also, verify
219 * ir_constant actual parameters.
235 const ir_rvalue *const actual = (ir_rvalue *) actual_ir_node local
369 const ir_rvalue *const actual = local
382 const ir_rvalue *const actual = local
561 ir_rvalue *actual = (ir_rvalue *) actual_node; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
ir_function.cpp 39 * \param list_b Actual parameters passed to the function.
65 const ir_rvalue *const actual = (ir_rvalue *) node_b; local
67 if (param->type == actual->type)
70 /* Try to find an implicit conversion from actual to param. */
86 if (!actual->type->can_implicitly_convert_to(param->type, state))
91 if (!param->type->can_implicitly_convert_to(actual->type, state))
136 const ir_rvalue *actual)
143 to_type = actual->type;
145 from_type = actual->type;
317 * multiple ways to apply these conversions to the actual arguments of
    [all...]
ast_function.cpp 73 * formal (\c ir_variable) or actual (\c ir_rvalue)
102 const ir_variable *formal, const ir_variable *actual)
113 if (actual->data.memory_coherent && !formal->data.memory_coherent) {
120 if (actual->data.memory_volatile && !formal->data.memory_volatile) {
127 if (actual->data.memory_restrict && !formal->data.memory_restrict) {
134 if (actual->data.memory_read_only && !formal->data.memory_read_only) {
141 if (actual->data.memory_write_only && !formal->data.memory_write_only) {
179 * Verify that 'out' and 'inout' actual parameters are lvalues. Also, verify
181 * ir_constant actual parameters.
197 const ir_rvalue *const actual = (ir_rvalue *) actual_ir_node local
334 const ir_rvalue *const actual = local
513 ir_rvalue *actual = (ir_rvalue *) actual_node; local
    [all...]
  /xsrc/external/mit/transset/dist/
transSet.c 56 " -a, --actual select the actual window\n"
141 {"actual", 0, NULL, 'a'},
156 Atom actual; local
295 0L, 1L, False, XA_CARDINAL, &actual, &format, &n,
  /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
ir3_ra_validate.c 451 struct reg_state actual = file->regs[physreg + i]; local
453 if (expected.def != actual.def || expected.offset != actual.offset) {
461 fprintf(stderr, "actual: ");
462 dump_reg_state(&actual);
  /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/
pan_texture.c 433 /* Cubemaps have 6 faces as "layers" in between each actual layer. We
478 * Average case, size equal to the actual size. Worst case, off by 2x (if
480 * must be greater than or equal to the actual size, so it's safe to use
680 unsigned actual = iview->image->layout.slices[l].line_stride; local
685 if (actual != expected)
  /xsrc/external/mit/xedit/dist/
commands.c 894 XawTextPosition actual = XawTextGetInsertionPoint(w); local
901 if (actual == pos)
  /xsrc/external/mit/ctwm/dist/
event_handlers.c 358 /* And call actual handler */
1127 Atom actual = None; local
1144 0L, 200L, False, XA_STRING, &actual, &actual_format,
1461 XA_STRING, &actual, &actual_format, &nitems,
1463 actual == None) {
  /xsrc/external/mit/xcompmgr/dist/
xcompmgr.c 1290 Atom actual; local
1296 XA_CARDINAL, &actual, &format,
1327 Atom actual; local
1333 XA_ATOM, &actual, &format,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_shader.c 150 MAYBE_UNUSED unsigned actual = add_arg_assign(fninfo, regfile, type, assign); local
151 assert(actual == idx);

Completed in 37 milliseconds