Searched refs:ctx (Results 26 - 50 of 114) sorted by relevance

12345

/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dattrlist.c112 ntfs_attr_search_ctx *ctx; local
145 ctx = ntfs_attr_get_search_ctx(ni, NULL);
146 if (!ctx) {
156 0 : le32_to_cpu(attr->value_length), ctx)) {
158 if (ctx->al_entry->lowest_vcn == attr->lowest_vcn) {
162 ntfs_attr_put_search_ctx(ctx);
166 ale = (ATTR_LIST_ENTRY*)((u8*)ctx->al_entry +
167 le16_to_cpu(ctx->al_entry->length));
173 ntfs_attr_put_search_ctx(ctx);
177 ale = ctx
244 ntfs_attrlist_entry_rm(ntfs_attr_search_ctx *ctx) argument
[all...]
H A Dinode.c161 ntfs_attr_search_ctx *ctx; local
181 ctx = ntfs_attr_get_search_ctx(ni, NULL);
182 if (!ctx)
186 0, CASE_SENSITIVE, 0, NULL, 0, ctx)) {
192 lthle = ctx->attr->value_length;
199 std_info = (STANDARD_INFORMATION *)((u8 *)ctx->attr +
200 le16_to_cpu(ctx->attr->value_offset));
222 CASE_SENSITIVE, 0, NULL, 0, ctx)) {
231 l = ntfs_get_attribute_value_length(ctx->attr);
244 l = ntfs_get_attribute_value(vol, ctx
746 ntfs_attr_search_ctx *ctx; local
802 ntfs_attr_search_ctx *ctx = NULL; local
1120 ntfs_attr_search_ctx *ctx; local
1304 ntfs_attr_search_ctx *ctx; local
1471 ntfs_attr_search_ctx *ctx; local
1530 ntfs_attr_search_ctx *ctx; local
[all...]
H A Dattrib.c413 ntfs_attr_search_ctx *ctx; local
444 ctx = ntfs_attr_get_search_ctx(ni, NULL);
445 if (!ctx)
448 if (ntfs_attr_lookup(type, name, name_len, 0, 0, NULL, 0, ctx))
451 a = ctx->attr;
568 ntfs_attr_put_search_ctx(ctx);
574 ntfs_attr_put_search_ctx(ctx);
614 ntfs_attr_search_ctx *ctx; local
623 ctx = ntfs_attr_get_search_ctx(na->ni, NULL);
624 if (!ctx)
663 ntfs_attr_search_ctx *ctx; local
753 ntfs_attr_search_ctx *ctx; local
1045 ntfs_attr_search_ctx *ctx; local
1855 ntfs_attr_search_ctx *ctx = NULL; local
2433 ntfs_attr_search_ctx *ctx = NULL; local
2825 ntfs_attr_find(const ATTR_TYPES type, const ntfschar *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const u8 *val, const u32 val_len, ntfs_attr_search_ctx *ctx) argument
3063 ntfs_external_attr_find(ATTR_TYPES type, const ntfschar *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const VCN lowest_vcn, const u8 *val, const u32 val_len, ntfs_attr_search_ctx *ctx) argument
3675 ntfs_attr_lookup(const ATTR_TYPES type, const ntfschar *name, const u32 name_len, const IGNORE_CASE_BOOL ic, const VCN lowest_vcn, const u8 *val, const u32 val_len, ntfs_attr_search_ctx *ctx) argument
3725 ntfs_attr_position(const ATTR_TYPES type, ntfs_attr_search_ctx *ctx) argument
3746 ntfs_attr_init_search_ctx(ntfs_attr_search_ctx *ctx, ntfs_inode *ni, MFT_RECORD *mrec) argument
3771 ntfs_attr_reinit_search_ctx(ntfs_attr_search_ctx *ctx) argument
3806 ntfs_attr_search_ctx *ctx; local
3825 ntfs_attr_put_search_ctx(ntfs_attr_search_ctx *ctx) argument
4101 ntfs_attr_search_ctx *ctx; local
4233 ntfs_attr_search_ctx *ctx; local
4368 ntfs_attr_record_rm(ntfs_attr_search_ctx *ctx) argument
4711 ntfs_attr_search_ctx *ctx; local
4743 ntfs_attr_search_ctx *ctx; local
4918 ntfs_attr_record_move_to(ntfs_attr_search_ctx *ctx, ntfs_inode *ni) argument
5013 ntfs_attr_record_move_away(ntfs_attr_search_ctx *ctx, int extra) argument
5105 ntfs_attr_make_non_resident(ntfs_attr *na, ntfs_attr_search_ctx *ctx) argument
5303 ntfs_attr_search_ctx *ctx; local
5608 ntfs_attr_make_resident(ntfs_attr *na, ntfs_attr_search_ctx *ctx) argument
5772 ntfs_attr_update_meta(ATTR_RECORD *a, ntfs_attr *na, MFT_RECORD *m, hole_type holes, ntfs_attr_search_ctx *ctx) argument
5903 ntfs_attr_search_ctx *ctx; local
6347 ntfs_attr_search_ctx *ctx; local
6505 ntfs_attr_search_ctx *ctx; local
7119 ntfs_attr_search_ctx *ctx; local
7145 ntfs_attr_search_ctx *ctx; local
[all...]
H A Dattrlist.h32 extern int ntfs_attrlist_entry_rm(ntfs_attr_search_ctx *ctx);
H A Dmft.c721 ntfs_attr_search_ctx *ctx; local
773 ctx = ntfs_attr_get_search_ctx(mftbmp_na->ni, NULL);
774 if (!ctx)
778 mftbmp_na->name_len, 0, rl[1].vcn, NULL, 0, ctx)) {
783 m = ctx->mrec;
784 a = ctx->attr;
836 ntfs_inode_mark_dirty(ctx->ntfs_ino);
837 ntfs_attr_reinit_search_ctx(ctx);
839 mftbmp_na->name_len, 0, 0, NULL, 0, ctx)) {
844 a = ctx
945 ntfs_attr_search_ctx *ctx; local
1043 ntfs_attr_search_ctx *ctx; local
1266 ntfs_attr_search_ctx *ctx; local
1370 ntfs_attr_search_ctx *ctx; local
[all...]
/haiku/src/system/libroot/posix/crypt/
H A Dpbkdf2.cpp51 * HMAC_SHA256_Init(ctx, K, Klen):
52 * Initialize the HMAC-SHA256 context ${ctx} with ${Klen} bytes of key from
56 HMAC_SHA256_Init(HMAC_SHA256_CTX * ctx, const void * _K, size_t Klen) argument
65 ctx->ictx.Init();
66 ctx->ictx.Update(K, Klen);
67 memcpy(khash, ctx->ictx.Digest(), 32);
73 ctx->ictx.Init();
77 ctx->ictx.Update(pad, 64);
80 ctx->octx.Init();
84 ctx
96 HMAC_SHA256_Update(HMAC_SHA256_CTX * ctx, const void * in, size_t len) argument
109 HMAC_SHA256_Final(uint8_t digest[32], HMAC_SHA256_CTX * ctx) argument
[all...]
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_crypto.c328 HMAC_SHA1_CTX ctx; local
333 HMAC_SHA1_Init(&ctx, key, key_len);
334 HMAC_SHA1_Update(&ctx, label, label_len);
335 HMAC_SHA1_Update(&ctx, context, context_len);
336 HMAC_SHA1_Update(&ctx, &count, 1);
338 HMAC_SHA1_Final(digest, &ctx);
343 HMAC_SHA1_Final(output, &ctx);
357 HMAC_SHA256_CTX ctx; local
363 HMAC_SHA256_Init(&ctx, key, key_len);
365 HMAC_SHA256_Update(&ctx, (u_int8_
413 HMAC_SHA1_CTX ctx; local
429 HMAC_SHA256_CTX ctx; local
469 ANY_CTX ctx; /* XXX off stack? */ local
526 } ctx; /* XXX off stack? */ local
585 } ctx; /* XXX off stack? */ local
[all...]
H A Dieee80211_crypto_bip.c58 struct ieee80211_bip_ctx *ctx; local
60 ctx = malloc(sizeof(*ctx), M_DEVBUF, M_NOWAIT | M_ZERO);
61 if (ctx == NULL)
63 AES_CMAC_SetKey(&ctx->cmac, k->k_key);
64 k->k_priv = ctx;
90 struct ieee80211_bip_ctx *ctx = k->k_priv; local
111 AES_CMAC_Init(&ctx->cmac);
112 AES_CMAC_Update(&ctx->cmac, (u_int8_t *)&aad, sizeof aad);
113 AES_CMAC_Update(&ctx
155 struct ieee80211_bip_ctx *ctx = k->k_priv; local
[all...]
H A Dieee80211_crypto_wep.c57 struct ieee80211_wep_ctx *ctx; local
59 ctx = malloc(sizeof(*ctx), M_DEVBUF, M_NOWAIT | M_ZERO);
60 if (ctx == NULL)
62 k->k_priv = ctx;
84 struct ieee80211_wep_ctx *ctx = k->k_priv; local
113 iv = (ctx->iv != 0) ? ctx->iv : arc4random();
117 ctx->iv = iv + 1;
127 rc4_keysetup(&ctx
203 struct ieee80211_wep_ctx *ctx = k->k_priv; local
[all...]
H A Dieee80211_crypto_ccmp.c56 struct ieee80211_ccmp_ctx *ctx; local
58 ctx = malloc(sizeof(*ctx), M_DEVBUF, M_NOWAIT | M_ZERO);
59 if (ctx == NULL)
61 AES_Setkey(&ctx->aesctx, k->k_key, 16);
62 k->k_priv = ctx;
81 ieee80211_ccmp_phase1(AES_CTX *ctx, const struct ieee80211_frame *wh, argument
149 AES_Encrypt(ctx, b, b);
153 AES_Encrypt(ctx, b, b);
156 AES_Encrypt(ctx,
169 struct ieee80211_ccmp_ctx *ctx = k->k_priv; local
346 struct ieee80211_ccmp_ctx *ctx = k->k_priv; local
[all...]
H A Dieee80211_crypto_tkip.c71 struct ieee80211_tkip_ctx *ctx; local
73 ctx = malloc(sizeof(*ctx), M_DEVBUF, M_NOWAIT | M_ZERO);
74 if (ctx == NULL)
82 ctx->txmic = &k->k_key[16];
83 ctx->rxmic = &k->k_key[24];
87 ctx->rxmic = &k->k_key[16];
88 ctx->txmic = &k->k_key[24];
90 k->k_priv = ctx;
124 MICHAEL_CTX ctx; /* smal local
188 struct ieee80211_tkip_ctx *ctx = k->k_priv; local
356 struct ieee80211_tkip_ctx *ctx = k->k_priv; local
[all...]
/haiku/src/system/libnetwork/netresolv/isc/
H A Dev_streams.c70 evContext_p *ctx = opaqueCtx.opaque; local
85 if (ctx->streams != NULL)
86 ctx->streams->prev = new;
88 new->next = ctx->streams;
89 ctx->streams = new;
104 evContext_p *ctx = opaqueCtx.opaque; local
119 if (ctx->streams != NULL)
120 ctx->streams->prev = new;
122 new->next = ctx->streams;
123 ctx
157 evContext_p *ctx = opaqueCtx.opaque; local
253 evContext_p *ctx = opaqueCtx.opaque; local
[all...]
H A Deventlib_p.h183 void *ctx; /* pointer to the evContext_p */ member in struct:__anon27
188 #define emulMaskInit(ctx, field, ev, lastnext) \
189 ctx->field.ctx = ctx; \
190 ctx->field.type = ev; \
191 ctx->field.result = lastnext;
263 void evPrintf(const evContext_p *ctx, int level, const char *fmt, ...)
267 extern int evPollfdRealloc(evContext_p *ctx, int pollfd_chunk_size, int fd);
278 evWait *evFreeWait(evContext_p *ctx, evWai
[all...]
/haiku/src/libs/compat/freebsd_iflib/compat/net/
H A Diflib.h143 if_ctx_t iidi_ctx; /* Back-pointer to the iflib ctx (softc) */
410 void *iflib_get_softc(if_ctx_t ctx);
412 device_t iflib_get_dev(if_ctx_t ctx);
414 if_t iflib_get_ifp(if_ctx_t ctx);
416 struct ifmedia *iflib_get_media(if_ctx_t ctx);
418 if_softc_ctx_t iflib_get_softc_ctx(if_ctx_t ctx);
419 if_shared_ctx_t iflib_get_sctx(if_ctx_t ctx);
421 void iflib_set_mac(if_ctx_t ctx, uint8_t mac[ETHER_ADDR_LEN]);
422 void iflib_request_reset(if_ctx_t ctx);
423 uint8_t iflib_in_detach(if_ctx_t ctx);
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/
H A Dlowntfs.c61 if (ctx->atime == ATIME_DISABLED)
63 else if (ctx->atime == ATIME_RELATIVE && mask == NTFS_UPDATE_ATIME &&
74 static BOOL ntfs_fuse_fill_security_context(struct lowntfs_context *ctx, argument
79 scx->vol = ctx->vol;
92 ntfs_fuse_inode_lookup(struct lowntfs_context *ctx, u64 parent, const char *name) argument
99 dir_ni = ntfs_inode_open(ctx->vol, INODE(parent));
119 ntfs_fuse_getstat(struct lowntfs_context *ctx, struct SECURITY_CONTEXT *scx, argument
129 if (ctx->posix_nlink
154 target = ntfs_make_symlink(ni, ctx->abs_mnt_point);
178 stbuf->st_mode = S_IFDIR | (0777 & ~ctx
360 ntfs_fuse_readlink(struct lowntfs_context* ctx, u64 ino, void* buffer, size_t* bufferSize) argument
554 ntfs_fuse_write(struct lowntfs_context* ctx, ntfs_inode* ni, const char *buf, size_t size, off_t offset) argument
611 ntfs_fuse_create(struct lowntfs_context *ctx, ino_t parent, const char *name, mode_t typemode, dev_t dev, const char *target, ino_t* ino) argument
819 ntfs_fuse_newlink(struct lowntfs_context *ctx, ino_t ino, ino_t newparent, const char *newname, struct fuse_entry_param *e) argument
914 ntfs_fuse_rm(struct lowntfs_context *ctx, ino_t parent, const char *name, enum RM_TYPES rm_type) argument
1132 ntfs_fuse_release(struct lowntfs_context *ctx, ino_t parent, ino_t ino, int state, u64 ghost) argument
1214 ntfs_fuse_safe_rename(struct lowntfs_context *ctx, ino_t ino, ino_t parent, const char *name, ino_t xino, ino_t newparent, const char *newname, const char *tmp) argument
1266 ntfs_fuse_rename_existing_dest(struct lowntfs_context *ctx, ino_t ino, ino_t parent, const char *name, ino_t xino, ino_t newparent, const char *newname) argument
1328 ntfs_fuse_rename(struct lowntfs_context *ctx, ino_t parent, const char *name, ino_t newparent, const char *newname) argument
[all...]
/haiku/src/libs/compat/openbsd_wlan/crypto/
H A Dkey_wrap.h23 AES_CTX ctx; member in struct:_aes_key_wrap_ctx
H A Dmd5.c51 MD5Init(MD5_CTX *ctx) argument
53 ctx->count = 0;
54 ctx->state[0] = 0x67452301;
55 ctx->state[1] = 0xefcdab89;
56 ctx->state[2] = 0x98badcfe;
57 ctx->state[3] = 0x10325476;
65 MD5Update(MD5_CTX *ctx, const void *inputptr, size_t len) argument
71 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1));
75 ctx->count += (u_int64_t)len << 3;
79 memcpy(ctx
104 MD5Final(unsigned char digest[MD5_DIGEST_LENGTH], MD5_CTX *ctx) argument
[all...]
H A Dhmac.h23 MD5_CTX ctx; member in struct:_HMAC_MD5_CTX
29 SHA1_CTX ctx; member in struct:_HMAC_SHA1_CTX
35 SHA2_CTX ctx; member in struct:_HMAC_SHA256_CTX
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_crypto_ccmp.c101 struct ccmp_ctx *ctx; local
103 ctx = (struct ccmp_ctx *) IEEE80211_MALLOC(sizeof(struct ccmp_ctx),
105 if (ctx == NULL) {
109 ctx->cc_vap = vap;
110 ctx->cc_ic = vap->iv_ic;
112 return ctx;
118 struct ccmp_ctx *ctx = k->wk_private; local
120 IEEE80211_FREE(ctx, M_80211_CRYPTO);
128 struct ccmp_ctx *ctx = k->wk_private; local
131 IEEE80211_DPRINTF(ctx
144 struct ccmp_ctx *ctx = k->wk_private; local
168 struct ccmp_ctx *ctx = k->wk_private; local
238 struct ccmp_ctx *ctx = k->wk_private; local
345 ccmp_init_blocks(rijndael_ctx *ctx, struct ieee80211_frame *wh, u_int64_t pn, size_t dlen, uint8_t b0[AES_BLOCK_LEN], uint8_t aad[2 * AES_BLOCK_LEN], uint8_t auth[AES_BLOCK_LEN], uint8_t s0[AES_BLOCK_LEN]) argument
452 struct ccmp_ctx *ctx = key->wk_private; local
597 struct ccmp_ctx *ctx = key->wk_private; local
[all...]
H A Dieee80211_crypto_tkip.c113 struct tkip_ctx *ctx; local
115 ctx = (struct tkip_ctx *) IEEE80211_MALLOC(sizeof(struct tkip_ctx),
117 if (ctx == NULL) {
122 ctx->tc_vap = vap;
124 return ctx;
130 struct tkip_ctx *ctx = k->wk_private; local
132 IEEE80211_FREE(ctx, M_80211_CRYPTO);
140 struct tkip_ctx *ctx = k->wk_private; local
143 (void) ctx; /* XXX */
144 IEEE80211_DPRINTF(ctx
156 struct tkip_ctx *ctx = k->wk_private; local
179 struct tkip_ctx *ctx = k->wk_private; local
242 struct tkip_ctx *ctx = k->wk_private; local
292 struct tkip_ctx *ctx = k->wk_private; local
387 struct tkip_ctx *ctx = k->wk_private; local
875 michael_mic(struct tkip_ctx *ctx, const u8 *key, struct mbuf *m, u_int off, size_t data_len, u8 mic[IEEE80211_WEP_MICLEN]) argument
1001 tkip_encrypt(struct tkip_ctx *ctx, struct ieee80211_key *key, struct mbuf *m, int hdrlen) argument
1027 tkip_decrypt(struct tkip_ctx *ctx, struct ieee80211_key *key, struct mbuf *m, int hdrlen) argument
[all...]
H A Dieee80211_crypto_wep.c92 struct wep_ctx *ctx; local
94 ctx = (struct wep_ctx *) IEEE80211_MALLOC(sizeof(struct wep_ctx),
96 if (ctx == NULL) {
101 ctx->wc_vap = vap;
102 ctx->wc_ic = vap->iv_ic;
103 get_random_bytes(&ctx->wc_iv, sizeof(ctx->wc_iv));
105 return ctx;
111 struct wep_ctx *ctx = k->wk_private; local
113 IEEE80211_FREE(ctx, M_80211_CRYPT
127 struct wep_ctx *ctx = k->wk_private; local
183 struct wep_ctx *ctx = k->wk_private; local
242 struct wep_ctx *ctx = k->wk_private; local
348 struct wep_ctx *ctx = key->wk_private; local
431 struct wep_ctx *ctx = key->wk_private; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/dev/e1000/
H A Dif_em.c307 static void em_setup_vlan_hw_support(if_ctx_t ctx);
741 em_set_num_queues(if_ctx_t ctx) argument
743 struct e1000_softc *sc = iflib_get_softc(ctx);
795 em_if_attach_pre(if_ctx_t ctx) argument
806 dev = iflib_get_dev(ctx);
807 sc = iflib_get_softc(ctx);
809 sc->ctx = sc->osdep.ctx = ctx;
811 scctx = sc->shared = iflib_get_softc_ctx(ctx);
1139 em_if_attach_post(if_ctx_t ctx) argument
1183 em_if_detach(if_ctx_t ctx) argument
1207 em_if_shutdown(if_ctx_t ctx) argument
1216 em_if_suspend(if_ctx_t ctx) argument
1227 em_if_resume(if_ctx_t ctx) argument
1240 em_if_mtu_set(if_ctx_t ctx, uint32_t mtu) argument
1299 em_if_init(if_ctx_t ctx) argument
1410 if_ctx_t ctx = sc->ctx; local
1450 em_if_rx_queue_intr_enable(if_ctx_t ctx, uint16_t rxqid) argument
1460 em_if_tx_queue_intr_enable(if_ctx_t ctx, uint16_t txqid) argument
1470 igb_if_rx_queue_intr_enable(if_ctx_t ctx, uint16_t rxqid) argument
1480 igb_if_tx_queue_intr_enable(if_ctx_t ctx, uint16_t txqid) argument
1548 if_ctx_t ctx = context; local
1564 em_if_media_status(if_ctx_t ctx, struct ifmediareq *ifmr) argument
1615 em_if_media_change(if_ctx_t ctx) argument
1662 em_if_set_promisc(if_ctx_t ctx, int flags) argument
1719 em_if_multi_set(if_ctx_t ctx) argument
1780 em_if_timer(if_ctx_t ctx, uint16_t qid) argument
1790 em_if_update_admin_status(if_ctx_t ctx) argument
1892 em_if_watchdog_reset(if_ctx_t ctx) argument
1910 em_if_stop(if_ctx_t ctx) argument
1930 em_identify_hardware(if_ctx_t ctx) argument
1962 em_allocate_pci_resources(if_ctx_t ctx) argument
2023 em_if_msix_intr_assign(if_ctx_t ctx, int msix) argument
2255 em_free_pci_resources(if_ctx_t ctx) argument
2292 em_setup_msix(if_ctx_t ctx) argument
2478 em_reset(if_ctx_t ctx) argument
2875 em_setup_interface(if_ctx_t ctx) argument
2917 em_if_tx_queues_alloc(if_ctx_t ctx, caddr_t *vaddrs, uint64_t *paddrs, int ntxqs, int ntxqsets) argument
2966 em_if_rx_queues_alloc(if_ctx_t ctx, caddr_t *vaddrs, uint64_t *paddrs, int nrxqs, int nrxqsets) argument
3008 em_if_queues_free(if_ctx_t ctx) argument
3039 em_initialize_transmit_unit(if_ctx_t ctx) argument
3178 em_initialize_receive_unit(if_ctx_t ctx) argument
3425 em_if_vlan_register(if_ctx_t ctx, u16 vtag) argument
3438 em_if_vlan_unregister(if_ctx_t ctx, u16 vtag) argument
3451 em_if_vlan_filter_capable(if_ctx_t ctx) argument
3463 em_if_vlan_filter_used(if_ctx_t ctx) argument
3527 em_setup_vlan_hw_support(if_ctx_t ctx) argument
3568 em_if_intr_enable(if_ctx_t ctx) argument
3583 em_if_intr_disable(if_ctx_t ctx) argument
3595 igb_if_intr_enable(if_ctx_t ctx) argument
3613 igb_if_intr_disable(if_ctx_t ctx) argument
3743 em_get_wakeup(if_ctx_t ctx) argument
3865 em_enable_wakeup(if_ctx_t ctx) argument
4015 em_if_led_func(if_ctx_t ctx, int onoff) argument
4163 em_if_get_counter(if_ctx_t ctx, ift_counter cnt) argument
4228 struct sysctl_ctx_list *ctx = device_get_sysctl_ctx(dev); local
4503 em_fw_version_locked(if_ctx_t ctx) argument
4834 em_if_debug(if_ctx_t ctx) argument
4882 em_enable_vectors_82574(if_ctx_t ctx) argument
[all...]
/haiku/src/tests/kits/opengl/egl/
H A DEGLTest.cpp30 EGLContext ctx; local
53 ctx = eglCreateContext(d, configs[0], EGL_NO_CONTEXT, NULL);
63 eglMakeCurrent( d, surf, surf, ctx );
/haiku/src/bin/locale/
H A Ddumpcatalog.cpp63 BString str, ctx, cmt; local
66 key.GetStringParts(&str, &ctx, &cmt);
68 "-----\n", key.fHashVal, str.String(), ctx.String(), cmt.String(),
/haiku/src/add-ons/accelerants/radeon_hd/atombios/
H A Datom.h155 status_t atom_execute_table(atom_context *ctx, int index, uint32 *params);
156 status_t atom_parse_data_header(atom_context *ctx, int index, uint16 *size,
158 status_t atom_parse_cmd_header(atom_context *ctx, int index, uint8 * frev,
162 status_t atom_allocate_fb_scratch(atom_context *ctx);

Completed in 133 milliseconds

12345