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

  /src/sys/external/bsd/drm2/dist/drm/ast/
Makefile 6 ast-y := ast_drv.o ast_main.o ast_mode.o ast_ttm.o ast_post.o ast_dp501.o
8 obj-$(CONFIG_DRM_AST) := ast.o
ast_dp501.c 18 struct ast_private *ast = dev->dev_private; local
20 return request_firmware(&ast->dp501_fw, "ast_dp501_fw.bin", dev->dev);
23 static void send_ack(struct ast_private *ast)
26 sendack = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0xff);
28 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0x00, sendack);
31 static void send_nack(struct ast_private *ast)
34 sendack = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0xff);
36 ast_set_index_reg_mask(ast, AST_IO_CRTC_PORT, 0x9b, 0x00, sendack);
39 static bool wait_ack(struct ast_private *ast)
44 waitack = ast_get_index_reg_mask(ast, AST_IO_CRTC_PORT, 0xd2, 0xff)
101 struct ast_private *ast = dev->dev_private; local
123 struct ast_private *ast = dev->dev_private; local
180 struct ast_private *ast = dev->dev_private; local
196 struct ast_private *ast = dev->dev_private; local
263 struct ast_private *ast = dev->dev_private; local
291 struct ast_private *ast = dev->dev_private; local
320 struct ast_private *ast = dev->dev_private; local
393 struct ast_private *ast = dev->dev_private; local
420 struct ast_private *ast = dev->dev_private; local
446 struct ast_private *ast = dev->dev_private; local
    [all...]
ast_main.c 45 void ast_set_index_reg_mask(struct ast_private *ast,
50 ast_io_write8(ast, base, index);
51 tmp = (ast_io_read8(ast, base + 1) & mask) | val;
52 ast_set_index_reg(ast, base, index, tmp);
55 uint8_t ast_get_index_reg(struct ast_private *ast,
59 ast_io_write8(ast, base, index);
60 ret = ast_io_read8(ast, base + 1);
64 uint8_t ast_get_index_reg_mask(struct ast_private *ast,
68 ast_io_write8(ast, base, index);
69 ret = ast_io_read8(ast, base + 1) & mask
76 struct ast_private *ast = dev->dev_private; local
126 struct ast_private *ast = dev->dev_private; local
279 struct ast_private *ast = dev->dev_private; local
401 struct ast_private *ast = dev->dev_private; local
427 struct ast_private *ast = dev->dev_private; local
459 struct ast_private *ast; local
555 struct ast_private *ast = dev->dev_private; local
    [all...]
ast_mode.c 5 * Parts based on xf86-video-ast
61 static void ast_cursor_set_base(struct ast_private *ast, u64 address);
65 static inline void ast_load_palette_index(struct ast_private *ast,
69 ast_io_write8(ast, AST_IO_DAC_INDEX_WRITE, index);
70 ast_io_read8(ast, AST_IO_SEQ_PORT);
71 ast_io_write8(ast, AST_IO_DAC_DATA, red);
72 ast_io_read8(ast, AST_IO_SEQ_PORT);
73 ast_io_write8(ast, AST_IO_DAC_DATA, green);
74 ast_io_read8(ast, AST_IO_SEQ_PORT);
75 ast_io_write8(ast, AST_IO_DAC_DATA, blue)
571 struct ast_private *ast = plane->dev->dev_private; local
591 struct ast_private *ast = plane->dev->dev_private; local
628 struct ast_private *ast; local
711 struct ast_private *ast = plane->dev->dev_private; local
744 struct ast_private *ast = plane->dev->dev_private; local
772 struct ast_private *ast = crtc->dev->dev_private; local
798 struct ast_private *ast = crtc->dev->dev_private; local
826 struct ast_private *ast = crtc->dev->dev_private; local
835 struct ast_private *ast = dev->dev_private; local
940 struct ast_private *ast = dev->dev_private; local
999 struct ast_private *ast = connector->dev->dev_private; local
1030 struct ast_private *ast = connector->dev->dev_private; local
1144 struct ast_private *ast = dev->dev_private; local
1182 struct ast_private *ast = dev->dev_private; local
1195 struct ast_private *ast = dev->dev_private; local
1239 struct ast_private *ast = i2c->dev->dev_private; local
1261 struct ast_private *ast = i2c->dev->dev_private; local
1283 struct ast_private *ast = i2c->dev->dev_private; local
1299 struct ast_private *ast = i2c->dev->dev_private; local
1447 struct ast_private *ast = crtc->dev->dev_private; local
    [all...]
ast_post.c 47 struct ast_private *ast = dev->dev_private; local
49 ast_io_write8(ast, AST_IO_VGA_ENABLE_PORT, 0x01);
50 ast_io_write8(ast, AST_IO_MISC_PORT_WRITE, 0x01);
55 struct ast_private *ast = dev->dev_private; local
57 ast_set_index_reg(ast, AST_IO_CRTC_PORT, 0xa1, 0x06);
63 struct ast_private *ast = dev->dev_private; local
66 if (ast->chip == AST1180) {
69 ch = ast_io_read8(ast, AST_IO_VGA_ENABLE_PORT);
82 struct ast_private *ast = dev->dev_private; local
88 ast_set_index_reg(ast, AST_IO_CRTC_PORT, i, 0x00)
284 struct ast_private *ast = dev->dev_private; local
378 struct ast_private *ast = dev->dev_private; local
1608 struct ast_private *ast = dev->dev_private; local
2040 struct ast_private *ast = dev->dev_private; local
    [all...]
  /src/sys/arch/arm/arm/
ast.c 1 /* $NetBSD: ast.c,v 1.34 2026/04/28 05:51:14 skrll Exp $ */
36 * ast.c
38 * Code to handle ast's and returns to user mode
44 __KERNEL_RCSID(0, "$NetBSD: ast.c,v 1.34 2026/04/28 05:51:14 skrll Exp $");
66 void ast(struct trapframe *);
96 ast(struct trapframe *tf) function
  /src/sys/compat/aoutm68k/
aoutm68k_stat.c 72 struct aoutm68k_stat43 ast; local
80 aoutm68k_stat43_convert(&sb, &ast);
82 return copyout(&ast, SCARG(uap, ub), sizeof(ast));
88 struct aoutm68k_stat43 ast; local
96 aoutm68k_stat43_convert(&sb, &ast);
98 return copyout(&ast, SCARG(uap, sb), sizeof(ast));
104 struct aoutm68k_stat43 ast; local
112 aoutm68k_stat43_convert(&sb, &ast);
122 struct aoutm68k_stat12 ast; local
138 struct aoutm68k_stat12 ast; local
154 struct aoutm68k_stat12 ast; local
171 struct aoutm68k_stat ast; local
187 struct aoutm68k_stat ast; local
204 struct aoutm68k_stat ast; local
220 struct aoutm68k_stat ast; local
    [all...]
  /src/sys/arch/sh3/sh3/
exception.c 131 void ast(struct lwp *, struct trapframe *);
465 * void ast(struct lwp *l, struct trapframe *tf):
473 ast(struct lwp *l, struct trapframe *tf) function
  /src/sys/arch/usermode/usermode/
trap.c 185 /* ast and userret */
187 ast(struct lwp *l) function
217 ast(l);
656 userret(l); /* or ast? */
  /src/sys/dev/usb/
umodem_common.c 662 usb_cdc_abstract_state_t ast; local
672 USETW(ast.wState, state);
674 err = usbd_do_request(sc->sc_udev, &req, &ast);
  /src/external/mit/isl/dist/
isl_test_cpp-checked.cc 237 /* Test basic AST generation from a schedule tree.
257 auto ast = build.node_from(schedule); local
258 assert(ast.is_null());
268 ast = build_copy.node_from(schedule);
269 assert(!ast.is_null());
273 ast = build.node_from(schedule);
274 assert(!ast.is_null());
289 * - AST generation
290 * - AST expression generation
isl_test_cpp-generic.cc 301 * by the AST generator.
324 auto ast = build.node_from(schedule); local
328 /* Test basic AST generation from a schedule tree that is independent
332 * - generate an AST from the schedule tree
348 auto ast = build.node_from(schedule); local
351 ast = build_copy.node_from(schedule);
355 ast = build.node_from(schedule);
363 /* Test basic AST expression generation from an affine expression.
isl_test_cpp.cc 275 /* Test basic AST generation from a schedule tree.
299 auto ast = build.node_from(schedule); local
313 auto ast = build_copy.node_from(schedule); local
317 ast = build.node_from(schedule);
354 * - AST generation
355 * - AST expression generation
isl_ast_codegen.c 69 /* Generate an AST for a single domain based on
183 /* Generate an AST for a single domain based on
263 /* Call build->create_leaf to a create "leaf" node in the AST,
307 /* Generate an AST after having handled the complete schedule
309 * if we are generating an AST from a schedule tree.
679 * on AST expressions corresponding to the elements in "list".
724 * but not (necessarily) enforced by the generated AST to "guard".
1397 /* Create an AST node for the current dimension based on
1432 * Eliminated levels don't need to be reflected in the AST since we can
1651 /* Create an AST node for the current dimension based o
5866 isl_ast_node *ast; local
    [all...]
  /src/sys/arch/mips/mips/
trap.c 132 void ast(void);
753 ast(void) function
852 printf("ast %#018lx v0 %#018lx v1 %#018lx\n",
  /src/sys/arch/alpha/alpha/
trap.c 587 ast(struct trapframe *framep) function
592 * We may not have a current process to do AST processing
  /src/external/bsd/elftosb/dist/elftosb2/
ConversionController.cpp 194 CommandFileASTNode * ast = NULL; local
195 int result = yyparse(&lexer, &ast);
196 m_ast = ast;
204 // dump AST
220 //! Iterates over the option definition AST nodes. elftosb::Value objects are created for
224 //! include AST nodes being an unexpected type or expression not evaluating to integers.
252 //! Scans the constant definition AST nodes, evaluates expression nodes by calling their
257 //! include AST nodes being an unexpected type or expression not evaluating to integers.
288 //! include AST nodes being an unexpected type or expression not evaluating to integers.
488 //! Creates an instance of BinaryDataSection from the AST node passed in th
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
sparc64-tdep.c 235 adi_stat_t ast = get_adi_info (inferior_ptid.pid ());
237 if (ast.nbits)
240 addr &= ((uint64_t) -1) >> ast.nbits;
243 CORE_ADDR signbit = (uint64_t) 1 << (64 - ast.nbits - 1);
255 adi_stat_t ast = get_adi_info (inferior_ptid.pid ());
257 return (naddr - (naddr % ast.blksize)) / ast.blksize;
265 adi_stat_t ast = get_adi_info (inferior_ptid.pid ());
267 return ((naddr + nbytes + ast.blksize - 1) / ast.blksize) - locl
234 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
254 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
264 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
347 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
368 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
523 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
sparc64-tdep.c 235 adi_stat_t ast = get_adi_info (inferior_ptid.pid ());
237 if (ast.nbits)
240 addr &= ((uint64_t) -1) >> ast.nbits;
243 CORE_ADDR signbit = (uint64_t) 1 << (64 - ast.nbits - 1);
255 adi_stat_t ast = get_adi_info (inferior_ptid.pid ());
257 return (naddr - (naddr % ast.blksize)) / ast.blksize;
265 adi_stat_t ast = get_adi_info (inferior_ptid.pid ());
267 return ((naddr + nbytes + ast.blksize - 1) / ast.blksize) - locl
234 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
254 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
264 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
347 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
368 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
523 adi_stat_t ast = get_adi_info (inferior_ptid.pid ()); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
graphite-isl-ast-to-gimple.cc 1 /* Translation of isl AST to Gimple.
101 /* Print SCHEDULE under an AST form on file F. */
108 isl_ast_node *ast local
111 print_isl_ast (f, ast);
112 isl_ast_node_free (ast);
215 /* This flag is set when an error occurred during the translation of isl AST
239 /* Return the tree variable that corresponds to the given isl ast identifier
491 /* These isl ast expressions are not supported yet. */
531 /* Converts an isl AST expression E back to a GCC expression tree of
718 a for ISL AST
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
graphite-isl-ast-to-gimple.cc 1 /* Translation of isl AST to Gimple.
101 /* Print SCHEDULE under an AST form on file F. */
108 isl_ast_node *ast local
111 print_isl_ast (f, ast);
112 isl_ast_node_free (ast);
215 /* This flag is set when an error occurred during the translation of isl AST
239 /* Return the tree variable that corresponds to the given isl ast identifier
491 /* These isl ast expressions are not supported yet. */
531 /* Converts an isl AST expression E back to a GCC expression tree of
718 a for ISL AST
    [all...]

Completed in 69 milliseconds