Searched refs:uint8 (Results 101 - 125 of 196) sorted by relevance

12345678

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/include/
H A Dbcmwifi_channels.h42 * DO NOT MAKE it > 255: channels are uint8's all over
101 #define CHSPEC_CHANNEL(chspec) ((uint8)((chspec) & WL_CHANSPEC_CHAN_MASK))
216 #define CHSPEC_CHANNEL(chspec) ((uint8)((chspec) & WL_CHANSPEC_CHAN_MASK))
298 #define LCHSPEC_CHANNEL(chspec) ((uint8)((chspec) & WL_LCHANSPEC_CHAN_MASK))
392 extern uint8 wf_chspec_ctlchan(chanspec_t chspec);
H A Dbcmnvram.h194 uint8 nvram_calc_crc(struct nvram_header * nvh);
H A Dsbchipc.h243 uint8 uart0data; /* 0x300 */
244 uint8 uart0imr;
245 uint8 uart0fcr;
246 uint8 uart0lcr;
247 uint8 uart0mcr;
248 uint8 uart0lsr;
249 uint8 uart0msr;
250 uint8 uart0scratch;
251 uint8 PAD[248]; /* corerev >= 1 */
253 uint8 uart1dat
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/include/
H A Drpc_secdes.h126 uint8 type; /* xxxx_xxxx_ACE_TYPE - e.g allowed / denied etc */
127 uint8 flags; /* xxxx_INHERIT_xxxx - e.g OBJECT_INHERIT_ACE */
141 #define SEC_ACE_HEADER_SIZE (2 * sizeof(uint8) + sizeof(uint16) + sizeof(uint32))
H A Dsmb.h320 uint8 sid_rev_num; /**< SID revision number */
321 uint8 num_auths; /**< Number of sub-authorities */
322 uint8 id_auth[6]; /**< Identifier Authority */
363 uint8 sid_use; /* usr=1 grp=2 dom=3 alias=4 wkng=5 del=6 inv=7 unk=8 */
386 uint8 attr; /* attributes forced to be set to 0x7: SE_GROUP_xxx */
396 uint8 attr; /* attributes forced to be set to 0x7: SE_GROUP_xxx */
480 uint8 *data;
1764 uint8 flags;
H A Drpc_spoolss.h526 uint8 *private;
559 POLICY_HND handle; /* handle used along all transactions (20*uint8) */
578 POLICY_HND handle; /* handle used along all transactions (20*uint8) */
639 uint8 *data;
784 uint8 *buffer;
1895 uint8 *data;
1907 uint8 *data;
2048 uint8 unknown2[5]; /* 0x0000000001 */
2103 uint8 *data;
2116 uint8 *dat
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dsecace.c30 BOOL sec_ace_object(uint8 type)
60 void init_sec_ace(SEC_ACE *t, DOM_SID *sid, uint8 type, SEC_ACCESS mask, uint8 flag)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libsmb/
H A Dclispnego.c29 DATA_BLOB spnego_gen_negTokenInit(uint8 guid[16],
263 DATA_BLOB spnego_gen_krb5_wrap(DATA_BLOB ticket, const uint8 tok_id[2])
291 BOOL spnego_parse_krb5_wrap(DATA_BLOB blob, DATA_BLOB *ticket, uint8 tok_id[2])
456 uint8 negResult;
499 uint8 negResult;
H A Dsmbencrypt.c281 const uchar * nt_resp, uint8 sess_key[16])
298 const uchar * nt_resp, uint8 sess_key[16])
313 uint8 sess_key[16])
339 uint8 sess_key[16])
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/passdb/
H A Dpdb_get_set.c123 const uint8* pdb_get_hours (const SAM_ACCOUNT *sampass)
131 const uint8* pdb_get_nt_passwd (const SAM_ACCOUNT *sampass)
136 return ((uint8*)sampass->private.nt_pw.data);
142 const uint8* pdb_get_lanman_passwd (const SAM_ACCOUNT *sampass)
147 return ((uint8*)sampass->private.lm_pw.data);
153 const uint8* pdb_get_pw_history (const SAM_ACCOUNT *sampass, uint32 *current_hist_len)
159 return ((uint8*)sampass->private.nt_pw_his.data);
953 BOOL pdb_set_nt_passwd (SAM_ACCOUNT *sampass, const uint8 pwd[NT_HASH_LEN], enum pdb_value_state flag)
973 BOOL pdb_set_lanman_passwd (SAM_ACCOUNT *sampass, const uint8 pwd[LM_HASH_LEN], enum pdb_value_state flag)
992 entries to store in the history - this must match the size of the uint8 arra
[all...]
H A Dpassdb.c1357 BOOL init_sam_from_buffer(SAM_ACCOUNT *sampass, uint8 *buf, uint32 buflen)
1366 uint32 init_buffer_from_sam (uint8 **buf, const SAM_ACCOUNT *sampass, BOOL size_only)
1372 BOOL init_sam_from_buffer_v0(SAM_ACCOUNT *sampass, uint8 *buf, uint32 buflen)
1404 uint8 *hours = NULL;
1405 uint8 *lm_pw_ptr = NULL, *nt_pw_ptr = NULL;
1550 BOOL init_sam_from_buffer_v1(SAM_ACCOUNT *sampass, uint8 *buf, uint32 buflen)
1583 uint8 *hours = NULL;
1584 uint8 *lm_pw_ptr = NULL, *nt_pw_ptr = NULL;
1736 BOOL init_sam_from_buffer_v2(SAM_ACCOUNT *sampass, uint8 *buf, uint32 buflen)
1769 uint8 *hour
[all...]
H A Dpdb_tdb.c76 uint8 *buf = NULL;
124 ret = init_sam_from_buffer_v0(user, (uint8 *)data.dptr, data.dsize);
127 ret = init_sam_from_buffer_v1(user, (uint8 *)data.dptr, data.dsize);
130 ret = init_sam_from_buffer_v2(user, (uint8 *)data.dptr, data.dsize);
585 uint8 *buf = NULL;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/shared/
H A Dbcmutils.c651 uint8 *dp1, *dp2;
721 uint8 *pktdata;
728 pktdata = (uint8 *)PKTDATA(osh, p); /* starting address of data */
746 uint8 * BCMFASTPATH
751 uint8 *pdata = (uint8 *) PKTDATA(osh, p);
757 pdata = (uint8 *) PKTDATA(osh, p);
763 return (uint8*) (pdata+pkt_off);
813 pq->hi_prec = (uint8)prec;
841 pq->hi_prec = (uint8)pre
[all...]
H A Dhndpmu.c97 static uint si_pmu_res_uptime(si_t *sih, osl_t *osh, chipcregs_t *cc, uint8 rsrc);
99 static void si_pmu_spuravoid_pllupdate(si_t *sih, chipcregs_t *cc, osl_t *osh, uint8 spuravoid);
101 void si_pmu_set_4330_plldivs(si_t *sih, uint8 dacrate);
198 uint8 i;
200 uint8 pll_ctrlcnt = 0;
239 uint8 i;
241 uint8 vreg_ctrlcnt = 0;
313 uint8 bb_voltage, uint8 rf_voltage)
341 BCMATTACHFN(si_pmu_set_ldo_voltage)(si_t *sih, osl_t *osh, uint8 ld
[all...]
H A Dsiutils.c71 static uint BCMINITFN(socram_banksize)(si_info_t *sii, sbsocramregs_t *r, uint8 idx, uint8 mtype);
504 extern uint8 patch_pair;
508 uint8 uart_tx;
521 static const uint8 BCMATTACHDATA(mux4335_hostwakeopt)[] = {
534 static const uint8 BCMATTACHDATA(mux4350_hostwakeopt)[] = {
625 uint8 uartopt_ix = MUXENAB4335_GETIX(w, UART);
652 uint8 hostwake = 0;
653 uint8 hostwake_ix = MUXENAB4335_GETIX(w, HOSTWAKE);
670 uint8 uartopt_id
[all...]
H A Dlinux_osl.c205 extern uint8* dhd_os_prealloc(void *osh, int section, int size);
1617 uint8
1618 osl_readb(osl_t *osh, volatile uint8 *r)
1623 return (uint8)((rreg)(ctx, (void*)r, sizeof(uint8)));
1646 osl_writeb(osl_t *osh, volatile uint8 *r, uint8 v)
1651 ((wreg)(ctx, (void*)r, v, sizeof(uint8)));
1819 uint8
1820 osl_readb(volatile uint8 *
[all...]
H A Dmin_osl.c152 static uint8 loader_pagetable_array[128*1024+16384];
488 return ((int)R_REG(NULL, (uint8 *)(info->reg_base + (offset << info->reg_shift))));
494 W_REG(NULL, (uint8 *)(info->reg_base + (offset << info->reg_shift)), value);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/auth/
H A Dauth_sam.c42 const uint8 *lm_pw, *nt_pw;
78 const uint8 *hours;
80 uint8 bitmask, bitpos;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libads/
H A Dsasl.c34 uint8 challenge[8];
35 uint8 nthash[24], lmhash[24], sess_key[16];
270 uint8 *p;
368 p = (uint8 *)output_token.value;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Derror.c99 uint8 eclass,uint32 ecode,BOOL force_dos, int line, const char *file)
H A Dchgpasswd.c575 const uint8 *lanman_pw;
641 const uint8 *pwd;
752 const uint8 *lanman_pw, *nt_pw;
943 const uint8 *nt_pw;
944 const uint8 *pwhistory;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dau1200fb.h35 #define uint8 unsigned char macro
81 volatile uint8 cursorpattern[256];
321 #define uint8 unsigned char macro
367 volatile uint8 cursorpattern[256];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/rc/
H A Dmtd.c189 crc = hndcrc32((uint8 *) &trx.flag_version,
215 crc = hndcrc32((uint8 *)&buf[off], count - off, crc);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpc_client/
H A Dcli_netlogon.c579 uint8 chal[8];
642 const uint8 chal[8],
655 uint8 netlogon_sess_key[16];
656 static uint8 zeros[16];
748 const char *machine_name, uint8 hashed_mach_pwd[16])
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/brcm-boards/bcm947xx/
H A Dnvram_linux.c128 if (nvram_calc_crc(header) == (uint8) header->crc_ver_init) {
186 if (nvram_calc_crc(header) == (uint8)header->crc_ver_init)
197 if (nvram_calc_crc(header) == (uint8) header->crc_ver_init) {
207 if (nvram_calc_crc(header) == (uint8) header->crc_ver_init) {
213 if (nvram_calc_crc(header) == (uint8) header->crc_ver_init) {

Completed in 240 milliseconds

12345678