Home
last modified time | relevance | path

Searched refs:BYTE (Results 1 – 25 of 38) sorted by relevance

12

/AliOS-Things-master/hardware/chip/haas1000/drivers/services/fs/fat/ChaN/
A Dff.h37 BYTE pd; /* Physical drive number */
79 BYTE drv; /* Physical drive number */
116 BYTE flag; /* File status flags */
117 BYTE pad1;
165 BYTE fattrib; /* Attribute */
219 FRESULT f_chmod (const TCHAR*, BYTE, BYTE); /* Change attribute of the file/dir */
226 FRESULT f_mkfs (BYTE, BYTE, UINT); /* Create a file system on the drive */
327 #define LD_WORD(ptr) (WORD)(((WORD)*((BYTE*)(ptr)+1)<<8)|(WORD)*(BYTE*)(ptr))
328 …RD(ptr) (DWORD)(((DWORD)*((BYTE*)(ptr)+3)<<24)|((DWORD)*((BYTE*)(ptr)+2)<<16)|((WORD)*((BYTE
329 #define ST_WORD(ptr,val) *(BYTE*)(ptr)=(BYTE)(val); *((BYTE*)(ptr)+1)=(BYTE)((WORD)(val)>>8)
[all …]
A Ddiskio.h14 typedef BYTE DSTATUS;
29 DSTATUS disk_initialize (BYTE);
30 DSTATUS disk_status (BYTE);
31 DRESULT disk_read (BYTE, BYTE*, DWORD, BYTE);
33 DRESULT disk_write (BYTE, const BYTE*, DWORD, BYTE);
35 DRESULT disk_ioctl (BYTE, BYTE, void*);
A Dinteger.h22 typedef unsigned char BYTE; typedef
/AliOS-Things-master/components/fatfs/src/usb_disk/
A Dusb_disk.h62 extern DSTATUS USB_HostMsdInitializeDisk(BYTE pdrv);
71 extern DSTATUS USB_HostMsdGetDiskStatus(BYTE pdrv);
85 extern DRESULT USB_HostMsdReadDisk(BYTE pdrv, BYTE *buff, DWORD sector, UINT count);
99 extern DRESULT USB_HostMsdWriteDisk(BYTE pdrv, const BYTE *buff, DWORD sector, UINT count);
112 extern DRESULT USB_HostMsdIoctlDisk(BYTE pdrv, BYTE cmd, void *buff);
/AliOS-Things-master/components/fatfs/src/ram_disk/
A Dram_disk.h52 DSTATUS ram_disk_initialize(BYTE pdrv);
53 DSTATUS ram_disk_status(BYTE pdrv);
54 DRESULT ram_disk_read(BYTE pdrv, BYTE *buff, DWORD sector, UINT count);
55 DRESULT ram_disk_write(BYTE pdrv, const BYTE *buff, DWORD sector, UINT count);
56 DRESULT ram_disk_ioctl(BYTE pdrv, BYTE cmd, void *buff);
A Dram_disk.c59 DSTATUS ram_disk_status(BYTE pdrv) in ram_disk_status()
71 DSTATUS ram_disk_initialize(BYTE pdrv) in ram_disk_initialize()
83 DRESULT ram_disk_read(BYTE pdrv, BYTE *buff, DWORD sector, UINT count) in ram_disk_read()
96 DRESULT ram_disk_write(BYTE pdrv, const BYTE *buff, DWORD sector, UINT count) in ram_disk_write()
109 DRESULT ram_disk_ioctl(BYTE pdrv, BYTE cmd, void *buff) in ram_disk_ioctl()
/AliOS-Things-master/components/fatfs/include/
A Dff.h43 BYTE pd; /* Physical drive number */
87 BYTE fs_type; /* Filesystem type (0:N/A) */
88 BYTE pdrv; /* Physical drive number */
89 BYTE n_fats; /* Number of FATs (1 or 2) */
90 BYTE wflag; /* win[] flag (b0:dirty) */
91 BYTE fsi_flag; /* FSINFO flags (b7:disabled, b0:dirty) */
136 BYTE attr; /* Object attribute */
158 BYTE flag; /* File status flags */
159 BYTE err; /* Abort flag (error code) */
202 BYTE fattrib; /* File attribute */
[all …]
A Ddiskio.h16 typedef BYTE DSTATUS;
38 DSTATUS disk_initialize (BYTE pdrv);
39 DSTATUS disk_status (BYTE pdrv);
40 DRESULT disk_read (BYTE pdrv, BYTE* buff, DWORD sector, UINT count);
41 DRESULT disk_write (BYTE pdrv, const BYTE* buff, DWORD sector, UINT count);
42 DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff);
A Dinteger.h22 typedef unsigned char BYTE; typedef
/AliOS-Things-master/components/py_engine/engine/lib/oofatfs/
A Dff.h50 typedef unsigned char BYTE; /* char must be 8-bit */
58 typedef unsigned char BYTE; /* char must be 8-bit */
124 BYTE fs_type; /* Filesystem type (0:not mounted) */
125 BYTE n_fats; /* Number of FATs (1 or 2) */
126 BYTE wflag; /* win[] flag (b0:dirty) */
127 BYTE fsi_flag; /* FSINFO flags (b7:disabled, b0:dirty) */
175 BYTE attr; /* Object attribute */
197 BYTE flag; /* File status flags */
198 BYTE err; /* Abort flag (error code) */
241 BYTE fattrib; /* File attribute */
[all …]
A Ddiskio.h17 typedef BYTE DSTATUS;
33 DRESULT disk_read (void *drv, BYTE* buff, DWORD sector, UINT count);
34 DRESULT disk_write (void *drv, const BYTE* buff, DWORD sector, UINT count);
35 DRESULT disk_ioctl (void *drv, BYTE cmd, void* buff);
A Dff.c733 BYTE b; in tchar2uni()
766 BYTE b; in tchar2uni()
1203 BYTE *p; in put_fat()
1308 BYTE bm; in change_bitmap()
2388 BYTE c;
2622 BYTE lcf;
3002 BYTE ns;
3621 BYTE *rbuff = (BYTE*)buff;
3720 const BYTE *wbuff = (const BYTE*)buff;
5150 if (dbc_1st((BYTE)wc)) wc = dbc_2nd((BYTE)*label) ? wc << 8 | (BYTE)*label++ : 0;
[all …]
/AliOS-Things-master/components/fatfs/src/
A Ddiskio.c12 DSTATUS ff_disk_status(BYTE pdrv) in ff_disk_status()
36 DSTATUS ff_disk_initialize(BYTE pdrv) in ff_disk_initialize()
59 DRESULT ff_disk_read(BYTE pdrv, BYTE *buff, DWORD sector, UINT count) in ff_disk_read()
83 DRESULT ff_disk_write(BYTE pdrv, const BYTE *buff, DWORD sector, UINT count) in ff_disk_write()
88 return SDMMC_write((BYTE *)buff, sector, count); in ff_disk_write()
107 DRESULT ff_disk_ioctl(BYTE pdrv, BYTE cmd, void *buff) in ff_disk_ioctl()
A Dff.c629 BYTE *d = (BYTE*)dst; in mem_cpy()
630 const BYTE *s = (const BYTE*)src; in mem_cpy()
644 BYTE *d = (BYTE*)dst; in mem_set()
656 const BYTE *d = (const BYTE *)dst, *s = (const BYTE *)src; in mem_cmp()
1064 BYTE *p; in put_fat()
1171 BYTE bm; in change_bitmap()
2245 BYTE c;
2865 BYTE ns;
3568 BYTE *rbuff = (BYTE*)buff;
3667 const BYTE *wbuff = (const BYTE*)buff;
[all …]
A Dffsystem.c50 BYTE vol, /* Corresponding volume (logical drive number) */ in ff_cre_syncobj()
/AliOS-Things-master/components/py_engine/engine/lib/crypto-algorithms/
A Dsha256.h20 typedef unsigned char BYTE; // 8-bit byte typedef
24 BYTE data[64];
32 void sha256_update(CRYAL_SHA256_CTX *ctx, const BYTE data[], size_t len);
33 void sha256_final(CRYAL_SHA256_CTX *ctx, BYTE hash[]);
A Dsha256.c44 static void sha256_transform(CRYAL_SHA256_CTX *ctx, const BYTE data[]) in sha256_transform()
99 void sha256_update(CRYAL_SHA256_CTX *ctx, const BYTE data[], size_t len) in sha256_update()
114 void sha256_final(CRYAL_SHA256_CTX *ctx, BYTE hash[]) in sha256_final()
/AliOS-Things-master/components/SDL2/src/core/windows/
A DSDL_xinput.h108 BYTE bLeftTrigger;
109 BYTE bRightTrigger;
128 BYTE BatteryType;
129 BYTE BatteryLevel;
155 BYTE devType,
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/visupng/
A DVisualPng.c57 BOOL DisplayImage (HWND hwnd, BYTE **ppDib,
157 static BYTE *pbImage; in WndProc()
165 static BYTE *pDib = NULL; in WndProc()
166 static BYTE *pDiData = NULL; in WndProc()
705 BOOL DisplayImage (HWND hwnd, BYTE **ppDib,
710 BYTE *pDib = *ppDib;
779 BYTE *dst;
816 BYTE *pStretchedImage;
817 BYTE *pImg;
818 BYTE *src, *dst;
[all …]
/AliOS-Things-master/components/fatfs/src/sd_disk/
A Dsd_disk.h51 DRESULT SDMMC_read(BYTE *buff, DWORD sector, UINT count);
53 DRESULT SDMMC_write(BYTE *buff, DWORD sector, UINT count);
55 DRESULT SDMMC_ioctl(BYTE cmd, void *buff);
A Dsd_disk.c69 DRESULT SDMMC_read(BYTE *buff, DWORD sector, UINT count) in SDMMC_read()
80 DRESULT SDMMC_write(BYTE *buff, DWORD sector, UINT count) in SDMMC_write()
91 DRESULT SDMMC_ioctl(BYTE cmd, void *buff) in SDMMC_ioctl()
118 *(BYTE *)buff = FM_ANY; in SDMMC_ioctl()
/AliOS-Things-master/components/ucloud_ai/src/model/aliyun-openapi/core/src/
A DHmacSha1Signer.cc45 BYTE rgbKeyData[]; in generate()
60 BYTE pbHash[32]; in generate()
68 CryptImportKey(hProv, (BYTE *)kb, kbLen, 0, CRYPT_IPSEC_HMAC_KEY, &hKey); in generate()
70 CryptSetHashParam(hHmacHash, HP_HMAC_INFO, (BYTE *)&HmacInfo, 0); in generate()
71 CryptHashData(hHmacHash, (BYTE *)(src.c_str()), src.size(), 0); in generate()
/AliOS-Things-master/components/oss/src/auth/
A DHmacSha1Signer.cc53 BYTE rgbKeyData[]; in generate()
68 BYTE pbHash[32]; in generate()
75 CryptImportKey(hProv, (BYTE*)kb, kbLen, 0, CRYPT_IPSEC_HMAC_KEY, &hKey); in generate()
77 CryptSetHashParam(hHmacHash, HP_HMAC_INFO, (BYTE*)&HmacInfo, 0); in generate()
78 CryptHashData(hHmacHash, (BYTE*)(src.c_str()), src.size(), 0); in generate()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/win_dib/
A Dtiff2dib.c150 lpbmi->bmiColors[i].rgbRed =(BYTE) CVT(red[i]); in LoadTIFFinDIB()
151 lpbmi->bmiColors[i].rgbGreen = (BYTE) CVT(green[i]); in LoadTIFFinDIB()
152 lpbmi->bmiColors[i].rgbBlue = (BYTE) CVT(blue[i]); in LoadTIFFinDIB()
156 lpbmi->bmiColors[i].rgbRed = (BYTE) red[i]; in LoadTIFFinDIB()
157 lpbmi->bmiColors[i].rgbGreen = (BYTE) green[i]; in LoadTIFFinDIB()
158 lpbmi->bmiColors[i].rgbBlue = (BYTE) blue[i]; in LoadTIFFinDIB()
/AliOS-Things-master/components/py_engine/engine/extmod/
A Dvfs_fat_diskio.c57 BYTE *buff, /* Data buffer to store read data */ in disk_read()
77 const BYTE *buff, /* Data to be written */ in disk_write()
103 BYTE cmd, /* Control code */ in disk_ioctl()

Completed in 47 milliseconds

12