| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/rpc/ |
| H A D | xdr.h | 256 #define IXDR_GET_INT32(buf) ((int32_t)ntohl((uint32_t)*(buf)++)) argument 257 #define IXDR_PUT_INT32(buf, v) (*(buf)++ = (int32_t)htonl((uint32_t)(v))) argument 258 #define IXDR_GET_U_INT32(buf) ((uint32_t)IXDR_GET_INT32(buf)) argument 259 #define IXDR_PUT_U_INT32(buf, v) IXDR_PUT_INT32(buf, (int32_t)(v)) argument 265 #define IXDR_GET_LONG(buf) ((long)IXDR_GET_U_INT32(buf)) argument 266 #define IXDR_PUT_LONG(buf, v) ((long)IXDR_PUT_INT32(buf, (long)(v))) argument 267 #define IXDR_GET_U_LONG(buf) ((u_long)IXDR_GET_LONG(buf)) argument 268 #define IXDR_PUT_U_LONG(buf, v) IXDR_PUT_LONG(buf, (long)(v)) argument 271 #define IXDR_GET_BOOL(buf) ((bool_t)IXDR_GET_LONG(buf)) argument 272 #define IXDR_GET_ENUM(buf, t) ((t)IXDR_GET_LONG(buf)) argument [all …]
|
| /utopia/UTPA2-700.0.x/modules/mfe/api/mfe/ |
| H A D | CheckSum.c | 127 unsigned char * buf = (unsigned char *) ptr; in UpdateCheckSum() local 145 s1 += buf[i]; in UpdateCheckSum() 155 s1 += buf[0]; s2 += s1; in UpdateCheckSum() 156 s1 += buf[1]; s2 += s1; in UpdateCheckSum() 157 s1 += buf[2]; s2 += s1; in UpdateCheckSum() 158 s1 += buf[3]; s2 += s1; in UpdateCheckSum() 165 s1 += buf[4]; s2 += s1; in UpdateCheckSum() 166 s1 += buf[5]; s2 += s1; in UpdateCheckSum() 167 s1 += buf[6]; s2 += s1; in UpdateCheckSum() 168 s1 += buf[7]; s2 += s1; in UpdateCheckSum() [all …]
|
| H A D | MuxCommon.c | 154 MFE_U8 *buf, *write_ptr; in outbuf_put() local 171 buf = tc_buf; in outbuf_put() 172 put32_msbf(&buf, pinfo->timecode); in outbuf_put() 194 buf = tc_buf; in outbuf_put() 197 memcpy(write_ptr, buf, 4); in outbuf_put() 201 memcpy(write_ptr, buf, len); in outbuf_put() 202 buf += len; in outbuf_put() 209 memcpy(write_ptr, buf, len); in outbuf_put() 217 buf = pinfo->header; in outbuf_put() 221 memcpy(write_ptr, buf, size); in outbuf_put() [all …]
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/ |
| H A D | drvEHCIDBG.cpp | 115 char buf [46], tmp [7], byte; in dbg_hcs_params() local 117 buf[0] = 0; in dbg_hcs_params() 123 strcat(buf, tmp); in dbg_hcs_params() 126 label, buf); in dbg_hcs_params() 219 static int dbg_status_buf (char *buf, unsigned len, char *label, U32 status) in dbg_status_buf() argument 221 return snprintf (buf, len, in dbg_status_buf() 255 static int dbg_intr_buf (char *buf, unsigned len, char *label, U32 enable) in dbg_intr_buf() argument 257 return snprintf (buf, len, in dbg_intr_buf() 308 static int dbg_command_buf (char *buf, unsigned len, char *label, U32 command) in dbg_command_buf() argument 310 return snprintf (buf, len, in dbg_command_buf() [all …]
|
| H A D | drvEhciHcd.c | 677 ehci_hub_status_data (struct usb_hcd *hcd, char *buf) in ehci_hub_status_data() argument 685 buf [0] = 0; in ehci_hub_status_data() 688 buf [1] = 0; in ehci_hub_status_data() 873 buf [0] |= 1 << (i + 1); in ehci_hub_status_data() 972 buf [1] |= 1 << (i - 7); in ehci_hub_status_data() 1257 char *buf, in ehci_hub_control() argument 1484 buf); in ehci_hub_control() 1488 memset (buf, 0, 4); in ehci_hub_control() 1697 *((U32 *) buf) = CPUToLE32(status); in ehci_hub_control() 1699 *buf = CPUToLE32(status); in ehci_hub_control() [all …]
|
| /utopia/UTPA2-700.0.x/modules/vdec_v3/hal/maxim/vpu_v3/ |
| H A D | Film.c | 98 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;} argument 99 #define DO2(buf,i) DO1(buf,i); DO1(buf,i+1); argument 100 #define DO4(buf,i) DO2(buf,i); DO2(buf,i+2); argument 101 #define DO8(buf,i) DO4(buf,i); DO4(buf,i+4); argument 102 #define DO16(buf) DO8(buf,0); DO8(buf,8); argument 110 unsigned long adler32( unsigned long adler, const unsigned char *buf, unsigned int len ) in adler32() argument 121 adler += buf[0]; in adler32() 131 if (buf == 0) in adler32() 137 adler += *buf++; in adler32() 151 DO16(buf); /* 16 sums unrolled */ in adler32() [all …]
|
| /utopia/UTPA2-700.0.x/modules/vdec_v3/hal/maserati/vpu_v3/ |
| H A D | Film.c | 98 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;} argument 99 #define DO2(buf,i) DO1(buf,i); DO1(buf,i+1); argument 100 #define DO4(buf,i) DO2(buf,i); DO2(buf,i+2); argument 101 #define DO8(buf,i) DO4(buf,i); DO4(buf,i+4); argument 102 #define DO16(buf) DO8(buf,0); DO8(buf,8); argument 110 unsigned long adler32( unsigned long adler, const unsigned char *buf, unsigned int len ) in adler32() argument 121 adler += buf[0]; in adler32() 131 if (buf == 0) in adler32() 137 adler += *buf++; in adler32() 151 DO16(buf); /* 16 sums unrolled */ in adler32() [all …]
|
| /utopia/UTPA2-700.0.x/mxlib/msfs/linux/ |
| H A D | MsFS.c | 352 int MsFS_Stat( const char *path, struct stat *buf ) in MsFS_Stat() argument 358 return stat( u8path, buf ); in MsFS_Stat() 361 return stat( path, buf ); in MsFS_Stat() 372 int MsFS_FStat( int fd, struct stat *buf ) in MsFS_FStat() argument 374 return fstat( fd, buf ); in MsFS_FStat() 429 char * MsFS_GetCwd( char *buf, size_t size ) in MsFS_GetCwd() argument 431 return getcwd( buf, size ); in MsFS_GetCwd() 501 ssize_t MsFS_Read( int fd, void *buf, size_t len ) in MsFS_Read() argument 503 return read( fd, buf, len ); in MsFS_Read() 516 ssize_t MsFS_Write( int fd, const void *buf, size_t len ) in MsFS_Write() argument [all …]
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/dtc/libfdt/ |
| H A D | fdt_rw.c | 389 int fdt_open_into(const void *fdt, void *buf, int bufsize) in fdt_open_into() argument 413 err = fdt_move(fdt, buf, bufsize); in fdt_open_into() 416 fdt_set_version(buf, 17); in fdt_open_into() 417 fdt_set_size_dt_struct(buf, struct_size); in fdt_open_into() 418 fdt_set_totalsize(buf, bufsize); in fdt_open_into() 430 tmp = buf; in fdt_open_into() 435 if ((tmp + newsize) > ((char *)buf + bufsize)) in fdt_open_into() 440 memmove(buf, tmp, newsize); in fdt_open_into() 442 fdt_set_magic(buf, FDT_MAGIC); in fdt_open_into() 443 fdt_set_totalsize(buf, bufsize); in fdt_open_into() [all …]
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usbhost/source3/usb_host_p3/ |
| H A D | drvMassStorage_3.c | 246 U32 buf; in Host20_MSCD_issue_CBW_Port3() local 282 buf=(U32)&(pOTGH_PT_BLK_Port3->sCBW.u32Signature); in Host20_MSCD_issue_CBW_Port3() 283 result=flib_Host20_Issue_Bulk_Port3 (pOTGH_PT_BLK_Port3->bOutQHDArrayNum,31,buf,OTGH_Dir_Out); in Host20_MSCD_issue_CBW_Port3() 298 U32 buf; in Host20_MSCD_issue_CSW_Port3() local 303 buf=(U32)&(pOTGH_PT_BLK_Port3->sCSW.u32Signature); in Host20_MSCD_issue_CSW_Port3() 306 result=flib_Host20_Issue_Bulk_Port3 (pOTGH_PT_BLK_Port3->bInQHDArrayNum,13,buf,OTGH_Dir_IN); in Host20_MSCD_issue_CSW_Port3() 374 U32 buf; in Host20_MSCD_issue_Data_Port3() local 385 buf=psMassStorage->srb->request_buffer; in Host20_MSCD_issue_Data_Port3() 405 ,buf+Offset,OTGH_Dir_Out); in Host20_MSCD_issue_Data_Port3() 429 buf+Offset+(TransferLengh-TotalBytes_Port3),OTGH_Dir_Out); in Host20_MSCD_issue_Data_Port3() [all …]
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usbhost/source/usb_host_p1/ |
| H A D | drvMassStorage.c | 247 U32 buf; in Host20_MSCD_issue_CBW() local 283 buf=((U32)&(OTGH_PT_BLK.sCBW.u32Signature)); in Host20_MSCD_issue_CBW() 285 result=flib_Host20_Issue_Bulk (OTGH_PT_BLK.bOutQHDArrayNum,31,buf,OTGH_Dir_Out); in Host20_MSCD_issue_CBW() 300 U32 buf; in Host20_MSCD_issue_CSW() local 305 buf=(U32)&(OTGH_PT_BLK.sCSW.u32Signature); in Host20_MSCD_issue_CSW() 308 result=flib_Host20_Issue_Bulk (OTGH_PT_BLK.bInQHDArrayNum,13,buf,OTGH_Dir_IN); in Host20_MSCD_issue_CSW() 377 U32 buf; in Host20_MSCD_issue_Data() local 390 buf=psMassStorage->srb->request_buffer; in Host20_MSCD_issue_Data() 411 ,buf+Offset,OTGH_Dir_Out); in Host20_MSCD_issue_Data() 435 buf+Offset+(TransferLengh-TotalBytes),OTGH_Dir_Out); in Host20_MSCD_issue_Data() [all …]
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usbhost/source2/usb_host_p2/ |
| H A D | drvMassStorage_2.c | 246 U32 buf; in Host20_MSCD_issue_CBW_Port2() local 282 buf=(U32)&(pOTGH_PT_BLK_Port2->sCBW.u32Signature); in Host20_MSCD_issue_CBW_Port2() 283 result=flib_Host20_Issue_Bulk_Port2 (pOTGH_PT_BLK_Port2->bOutQHDArrayNum,31,buf,OTGH_Dir_Out); in Host20_MSCD_issue_CBW_Port2() 298 U32 buf; in Host20_MSCD_issue_CSW_Port2() local 303 buf=(U32)&(pOTGH_PT_BLK_Port2->sCSW.u32Signature); in Host20_MSCD_issue_CSW_Port2() 306 result=flib_Host20_Issue_Bulk_Port2 (pOTGH_PT_BLK_Port2->bInQHDArrayNum,13,buf,OTGH_Dir_IN); in Host20_MSCD_issue_CSW_Port2() 374 U32 buf; in Host20_MSCD_issue_Data_Port2() local 385 buf=psMassStorage->srb->request_buffer; in Host20_MSCD_issue_Data_Port2() 405 ,buf+Offset,OTGH_Dir_Out); in Host20_MSCD_issue_Data_Port2() 429 buf+Offset+(TransferLengh-TotalBytes_Port2),OTGH_Dir_Out); in Host20_MSCD_issue_Data_Port2() [all …]
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usbhost/source4/usb_host_p4/ |
| H A D | drvMassStorage_4.c | 246 U32 buf; in Host20_MSCD_issue_CBW_Port4() local 282 buf=(U32)&(pOTGH_PT_BLK_Port4->sCBW.u32Signature); in Host20_MSCD_issue_CBW_Port4() 283 result=flib_Host20_Issue_Bulk_Port4 (pOTGH_PT_BLK_Port4->bOutQHDArrayNum,31,buf,OTGH_Dir_Out); in Host20_MSCD_issue_CBW_Port4() 298 U32 buf; in Host20_MSCD_issue_CSW_Port4() local 303 buf=(U32)&(pOTGH_PT_BLK_Port4->sCSW.u32Signature); in Host20_MSCD_issue_CSW_Port4() 306 result=flib_Host20_Issue_Bulk_Port4 (pOTGH_PT_BLK_Port4->bInQHDArrayNum,13,buf,OTGH_Dir_IN); in Host20_MSCD_issue_CSW_Port4() 374 U32 buf; in Host20_MSCD_issue_Data_Port4() local 385 buf=psMassStorage->srb->request_buffer; in Host20_MSCD_issue_Data_Port4() 405 ,buf+Offset,OTGH_Dir_Out); in Host20_MSCD_issue_Data_Port4() 429 buf+Offset+(TransferLengh-TotalBytes_Port4),OTGH_Dir_Out); in Host20_MSCD_issue_Data_Port4() [all …]
|
| /utopia/UTPA2-700.0.x/mxlib/msfs/ecos/ |
| H A D | MsFS.c | 147 static int (*pstat)(const char *path, struct stat *buf) = stat; 320 int MsFS_Stat( const char *path, struct stat *buf ) in MsFS_Stat() argument 322 return pstat( path, buf ); in MsFS_Stat() 333 int MsFS_FStat( int fd, struct stat *buf ) in MsFS_FStat() argument 335 return fstat( fd, buf ); in MsFS_FStat() 383 char * MsFS_GetCwd( char *buf, size_t size ) in MsFS_GetCwd() argument 385 return getcwd( buf, size ); in MsFS_GetCwd() 446 ssize_t MsFS_Read( int fd, void *buf, size_t len ) in MsFS_Read() argument 448 return read( fd, buf, len ); in MsFS_Read() 461 ssize_t MsFS_Write( int fd, const void *buf, size_t len ) in MsFS_Write() argument [all …]
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/mod/ |
| H A D | modpost.c | 1747 void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf, in buf_printf() argument 1756 buf_write(buf, tmp, len); in buf_printf() 1760 void buf_write(struct buffer *buf, const char *s, int len) in buf_write() argument 1762 if (buf->size - buf->pos < len) { in buf_write() 1763 buf->size += len + SZ; in buf_write() 1764 buf->p = realloc(buf->p, buf->size); in buf_write() 1766 strncpy(buf->p + buf->pos, s, len); in buf_write() 1767 buf->pos += len; in buf_write() 2067 struct buffer buf = { }; in write_dump() local 2075 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n", in write_dump() [all …]
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/bits/ |
| H A D | stat.h | 244 #define __S_TYPEISMQ(buf) ((buf)->st_mode - (buf)->st_mode) argument 245 #define __S_TYPEISSEM(buf) ((buf)->st_mode - (buf)->st_mode) argument 246 #define __S_TYPEISSHM(buf) ((buf)->st_mode - (buf)->st_mode) argument
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/lxdialog/ |
| H A D | textbox.c | 32 static const char *buf; variable 63 buf = tbuf; in dialog_textbox() 64 page = buf; /* page is pointer to start of page to be displayed */ in dialog_textbox() 139 page = buf; in dialog_textbox() 149 page = buf + strlen(buf); in dialog_textbox() 284 if (page == buf) { in back_lines() 290 if (page == buf) { in back_lines() 388 percent = (page - buf) * 100 / strlen(buf); in print_position()
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usbhost/source/usb_hid_p1/ |
| H A D | drvintpipe.c | 557 U8 flib_Host20_Issue_Interrupt(U32 buf,U32 hwSize) in flib_Host20_Issue_Interrupt() argument 563 if ( buf !=(U32) KSEG02KSEG1(buf) ) in flib_Host20_Issue_Interrupt() 565 if (buf & 0x7) //flush should be 8 bytes aligned in flib_Host20_Issue_Interrupt() 583 MY_HAL_DCACHE_FLUSH((U32)buf,(U32)hwSize); //flush buffer to uncached buffer in flib_Host20_Issue_Interrupt() 584 buf=(U32)KSEG02KSEG1(buf); in flib_Host20_Issue_Interrupt() 589 if (buf & 0xf) in flib_Host20_Issue_Interrupt() 608 workbuf=buf; //use original buf in flib_Host20_Issue_Interrupt() 625 memcpy((void*)buf,(void*)mybuf,hwSize); //copy buffer in flib_Host20_Issue_Interrupt()
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usbhost/source2/usb_hid_p2/ |
| H A D | drvintpipe_2.c | 557 U8 flib_Host20_Issue_Interrupt_Port2(U32 buf,U32 hwSize) in flib_Host20_Issue_Interrupt_Port2() argument 563 if ( buf !=(U32) KSEG02KSEG1(buf) ) in flib_Host20_Issue_Interrupt_Port2() 565 if (buf & 0x7) //flush should be 8 bytes aligned in flib_Host20_Issue_Interrupt_Port2() 583 MY_HAL_DCACHE_FLUSH((U32)buf,(U32)hwSize); //flush buffer to uncached buffer in flib_Host20_Issue_Interrupt_Port2() 584 buf=(U32)KSEG02KSEG1(buf); in flib_Host20_Issue_Interrupt_Port2() 589 if (buf & 0xf) in flib_Host20_Issue_Interrupt_Port2() 608 workbuf=buf; //use original buf in flib_Host20_Issue_Interrupt_Port2() 625 memcpy((void*)buf,(void*)mybuf,hwSize); //copy buffer in flib_Host20_Issue_Interrupt_Port2()
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usbhost/source3/usb_hid_p3/ |
| H A D | drvintpipe_3.c | 557 U8 flib_Host20_Issue_Interrupt_Port3(U32 buf,U32 hwSize) in flib_Host20_Issue_Interrupt_Port3() argument 563 if ( buf !=(U32) KSEG02KSEG1(buf) ) in flib_Host20_Issue_Interrupt_Port3() 565 if (buf & 0x7) //flush should be 8 bytes aligned in flib_Host20_Issue_Interrupt_Port3() 583 MY_HAL_DCACHE_FLUSH((U32)buf,(U32)hwSize); //flush buffer to uncached buffer in flib_Host20_Issue_Interrupt_Port3() 584 buf=(U32)KSEG02KSEG1(buf); in flib_Host20_Issue_Interrupt_Port3() 589 if (buf & 0xf) in flib_Host20_Issue_Interrupt_Port3() 608 workbuf=buf; //use original buf in flib_Host20_Issue_Interrupt_Port3() 625 memcpy((void*)buf,(void*)mybuf,hwSize); //copy buffer in flib_Host20_Issue_Interrupt_Port3()
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usbhost/source4/usb_hid_p4/ |
| H A D | drvintpipe_4.c | 557 U8 flib_Host20_Issue_Interrupt_Port4(U32 buf,U32 hwSize) in flib_Host20_Issue_Interrupt_Port4() argument 563 if ( buf !=(U32) KSEG02KSEG1(buf) ) in flib_Host20_Issue_Interrupt_Port4() 565 if (buf & 0x7) //flush should be 8 bytes aligned in flib_Host20_Issue_Interrupt_Port4() 583 MY_HAL_DCACHE_FLUSH((U32)buf,(U32)hwSize); //flush buffer to uncached buffer in flib_Host20_Issue_Interrupt_Port4() 584 buf=(U32)KSEG02KSEG1(buf); in flib_Host20_Issue_Interrupt_Port4() 589 if (buf & 0xf) in flib_Host20_Issue_Interrupt_Port4() 608 workbuf=buf; //use original buf in flib_Host20_Issue_Interrupt_Port4() 625 memcpy((void*)buf,(void*)mybuf,hwSize); //copy buffer in flib_Host20_Issue_Interrupt_Port4()
|
| /utopia/UTPA2-700.0.x/modules/uart/hal/k6lite/uart/ |
| H A D | halUART.c | 550 int HAL_UART_Aeon_Write(device_t dev, const char *buf, MS_U32 len, int off) in HAL_UART_Aeon_Write() argument 567 AEON_REG8(UART_TX) = *buf++; in HAL_UART_Aeon_Write() 587 AEON_REG8(UART_TX) = *buf++; in HAL_UART_Aeon_Write() 607 u->tx_buf[u->tx_buf_in] = *buf++; in HAL_UART_Aeon_Write() 616 int HAL_UART_Aeon_Read(device_t dev, char *buf, MS_U32 len, int off) in HAL_UART_Aeon_Read() argument 640 buf[nr_recv++] = AEON_REG8(UART_RX); in HAL_UART_Aeon_Read() 654 buf[nr_recv++] = u->rx_buf[u->rx_buf_out]; in HAL_UART_Aeon_Read() 1000 int HAL_UART_PIU_Write(device_t dev, const char *buf, MS_U32 len, int off) in HAL_UART_PIU_Write() argument 1017 UART_REG8(UART_TX) = *buf++; in HAL_UART_PIU_Write() 1037 UART_REG8(UART_TX) = *buf++; in HAL_UART_PIU_Write() [all …]
|
| /utopia/UTPA2-700.0.x/modules/uart/hal/curry/uart/ |
| H A D | halUART.c | 550 int HAL_UART_Aeon_Write(device_t dev, const char *buf, MS_U32 len, int off) in HAL_UART_Aeon_Write() argument 567 AEON_REG8(UART_TX) = *buf++; in HAL_UART_Aeon_Write() 587 AEON_REG8(UART_TX) = *buf++; in HAL_UART_Aeon_Write() 607 u->tx_buf[u->tx_buf_in] = *buf++; in HAL_UART_Aeon_Write() 616 int HAL_UART_Aeon_Read(device_t dev, char *buf, MS_U32 len, int off) in HAL_UART_Aeon_Read() argument 640 buf[nr_recv++] = AEON_REG8(UART_RX); in HAL_UART_Aeon_Read() 654 buf[nr_recv++] = u->rx_buf[u->rx_buf_out]; in HAL_UART_Aeon_Read() 1000 int HAL_UART_PIU_Write(device_t dev, const char *buf, MS_U32 len, int off) in HAL_UART_PIU_Write() argument 1017 UART_REG8(UART_TX) = *buf++; in HAL_UART_PIU_Write() 1037 UART_REG8(UART_TX) = *buf++; in HAL_UART_PIU_Write() [all …]
|
| /utopia/UTPA2-700.0.x/modules/uart/hal/kano/uart/ |
| H A D | halUART.c | 550 int HAL_UART_Aeon_Write(device_t dev, const char *buf, MS_U32 len, int off) in HAL_UART_Aeon_Write() argument 567 AEON_REG8(UART_TX) = *buf++; in HAL_UART_Aeon_Write() 587 AEON_REG8(UART_TX) = *buf++; in HAL_UART_Aeon_Write() 607 u->tx_buf[u->tx_buf_in] = *buf++; in HAL_UART_Aeon_Write() 616 int HAL_UART_Aeon_Read(device_t dev, char *buf, MS_U32 len, int off) in HAL_UART_Aeon_Read() argument 640 buf[nr_recv++] = AEON_REG8(UART_RX); in HAL_UART_Aeon_Read() 654 buf[nr_recv++] = u->rx_buf[u->rx_buf_out]; in HAL_UART_Aeon_Read() 1000 int HAL_UART_PIU_Write(device_t dev, const char *buf, MS_U32 len, int off) in HAL_UART_PIU_Write() argument 1017 UART_REG8(UART_TX) = *buf++; in HAL_UART_PIU_Write() 1037 UART_REG8(UART_TX) = *buf++; in HAL_UART_PIU_Write() [all …]
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/ |
| H A D | lex.zconf.c | 945 #define YY_INPUT(buf,result,max_size) \ argument 947 while ( (result = read( fileno(zconfin), (char *) buf, max_size )) < 0 ) \ 2084 char *buf; in zconf_scan_bytes() local 2090 buf = (char *) zconfalloc(n ); in zconf_scan_bytes() 2091 if ( ! buf ) in zconf_scan_bytes() 2095 buf[i] = yybytes[i]; in zconf_scan_bytes() 2097 buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; in zconf_scan_bytes() 2099 b = zconf_scan_buffer(buf,n ); in zconf_scan_bytes() 2372 struct buffer *buf = malloc(sizeof(*buf)); in zconf_nextfile() local 2373 memset(buf, 0, sizeof(*buf)); in zconf_nextfile() [all …]
|