| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/sys/ |
| H A D | queue.h | 105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \ argument 106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \ 107 (listelm)->field.le_next->field.le_prev = \ 108 &(elm)->field.le_next; \ 109 (listelm)->field.le_next = (elm); \ 110 (elm)->field.le_prev = &(listelm)->field.le_next; \ 113 #define LIST_INSERT_BEFORE(listelm, elm, field) do { \ argument 114 (elm)->field.le_prev = (listelm)->field.le_prev; \ 115 (elm)->field.le_next = (listelm); \ 116 *(listelm)->field.le_prev = (elm); \ [all …]
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/sys/ |
| H A D | queue.h | 129 #define SLIST_FOREACH(var, head, field) \ argument 132 (var) = SLIST_NEXT((var), field)) 138 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ argument 139 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \ 140 SLIST_NEXT((slistelm), field) = (elm); \ 143 #define SLIST_INSERT_HEAD(head, elm, field) do { \ argument 144 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \ 148 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) argument 150 #define SLIST_REMOVE(head, elm, type, field) do { \ argument 152 SLIST_REMOVE_HEAD((head), field); \ [all …]
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/ |
| H A D | videodev2.h | 116 #define V4L2_FIELD_HAS_TOP(field) \ argument 117 ((field) == V4L2_FIELD_TOP ||\ 118 (field) == V4L2_FIELD_INTERLACED ||\ 119 (field) == V4L2_FIELD_INTERLACED_TB ||\ 120 (field) == V4L2_FIELD_INTERLACED_BT ||\ 121 (field) == V4L2_FIELD_SEQ_TB ||\ 122 (field) == V4L2_FIELD_SEQ_BT) 123 #define V4L2_FIELD_HAS_BOTTOM(field) \ argument 124 ((field) == V4L2_FIELD_BOTTOM ||\ 125 (field) == V4L2_FIELD_INTERLACED ||\ [all …]
|
| H A D | reiserfs_fs.h | 1930 #define PROC_INFO_MAX( sb, field, value ) \ argument 1931 __PINFO( sb ).field = \ 1932 max( REISERFS_SB( sb ) -> s_proc_info_data.field, value ) 1933 #define PROC_INFO_INC( sb, field ) ( ++ ( __PINFO( sb ).field ) ) argument 1934 #define PROC_INFO_ADD( sb, field, val ) ( __PINFO( sb ).field += ( val ) ) argument 1942 #define PROC_INFO_MAX( sb, field, value ) VOID_V argument 1943 #define PROC_INFO_INC( sb, field ) VOID_V argument 1944 #define PROC_INFO_ADD( sb, field, val ) VOID_V argument
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/ |
| H A D | makelst | 15 field() { function 21 t2=`field 6 $t1` 26 t4=`field 1 $t3` 27 t5=`field 1 $t1`
|
| H A D | gen_initramfs_list.sh | 41 field() { function 129 local maj=`field 5 ${dev}` 130 local min=`field 6 ${dev}`
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/mod/ |
| H A D | file2alias.c | 41 #define ADD(str, sep, cond, field) \ argument 46 sizeof(field) == 1 ? "%02X" : \ 47 sizeof(field) == 2 ? "%04X" : \ 48 sizeof(field) == 4 ? "%08X" : "", \ 49 field); \ 758 int field; member 796 id->matches[j].slot == dmi_fields[i].field) { in do_dmi_entry()
|
| /utopia/UTPA2-700.0.x/modules/xc/drv/xc/ |
| H A D | mdrv_sc_scaling.c.0 | 2055 // 4. non-mirror+uc (P mode), at least 3 frames (interlace mode only need 4 field, eg. 25_4R_MC) 4484 //mirror and sub window: progressive: 4 frame mode; interlace: 8 field mode 4485 //sub window: progressive: 3 frame mode; interlace: 6 field mode 4486 //input vfreq > panel supported vfreq: progressive: 3 frame mode; interlace: 6 field mode 4835 //I mode must do FRC in XC, so need 6 field 5230 switch(u8FrameNumFactor) // Get field type. 5427 switch( u8FrameNumFactor) // Get field type. 5589 // Put all field together. 5610 // Put all field together. 5637 // Put all field together. [all …]
|
| H A D | mvideo.c.0 | 198 …XC_INITDATA_VERSION current version : 1 //1: Add an field eScartIDPort_Sel… 1322 … //Mantis issue of 0266525 . Need to toggle IP write mask field count clear before input V sync . 2641 … //reg_IP1F2_21 = 0x0003; // enable DE -> no field invert, disable DE -> use field invert 2650 … reg_IP1F2_21 = 0x0000; // enable DE -> no field invert, disable DE -> use field invert 3437 // set field shift line // set shift line between even/odd field 10020 /// Get field packing mode support status
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/dtc/libfdt/ |
| H A D | libfdt.h | 143 #define fdt_get_header(fdt, field) \ argument 144 (fdt32_to_cpu(((const struct fdt_header *)(fdt))->field))
|
| /utopia/UTPA2-700.0.x/modules/xc/hal/k6lite/xc/include/ |
| H A D | mhal_xc_chip_config.h.0 | 249 Y0 has 64 * 4 bits ( 8 pixel for each field ). 250 Y1 has 64 * 4 bits ( 8 pixel for each field ). 271 // 16 field mode include 8 field configurion in it. ENABLE_8_FIELD_SUPPORTED is specital case in T7
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/genksyms/ |
| H A D | keywords.gperf | 32 # field name which breaks the genksyms parser. It is not a gcc keyword anyway.
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/coccinelle/misc/ |
| H A D | doubleinit.cocci | 1 /// Find duplicate field initializations. This has a high rate of false
|
| /utopia/UTPA2-700.0.x/modules/dscmb/hal/k6lite/nsk2/ |
| H A D | halNSK2.c | 2762 This field is unique chip data that can be shared with other non-NDS modules. in HAL_NSK2_GetPubOTP() 2763 63:48 U_OTP_v_PubOtpGP General purpose OTP field. in HAL_NSK2_GetPubOTP()
|
| /utopia/UTPA2-700.0.x/modules/dscmb/hal/curry/nsk2/ |
| H A D | halNSK2.c | 4173 This field is unique chip data that can be shared with other non-NDS modules. in HAL_NSK2_GetPubOTP() 4174 63:48 U_OTP_v_PubOtpGP General purpose OTP field. in HAL_NSK2_GetPubOTP()
|
| /utopia/UTPA2-700.0.x/modules/dscmb/hal/kano/nsk2/ |
| H A D | halNSK2.c | 2746 This field is unique chip data that can be shared with other non-NDS modules. in HAL_NSK2_GetPubOTP() 2747 63:48 U_OTP_v_PubOtpGP General purpose OTP field. in HAL_NSK2_GetPubOTP()
|
| /utopia/UTPA2-700.0.x/modules/dscmb/hal/k6/nsk2/ |
| H A D | halNSK2.c | 2759 This field is unique chip data that can be shared with other non-NDS modules. in HAL_NSK2_GetPubOTP() 2760 63:48 U_OTP_v_PubOtpGP General purpose OTP field. in HAL_NSK2_GetPubOTP()
|
| /utopia/UTPA2-700.0.x/modules/dscmb/hal/k7u/nsk2/ |
| H A D | halNSK2.c | 2764 This field is unique chip data that can be shared with other non-NDS modules. in HAL_NSK2_GetPubOTP() 2765 63:48 U_OTP_v_PubOtpGP General purpose OTP field. in HAL_NSK2_GetPubOTP()
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/bits/ |
| H A D | stab.def | 82 Supposedly the field is "path to associated .cb file". THIS VALUE
|
| /utopia/UTPA2-700.0.x/modules/dscmb/hal/k6lite/dscmb/ |
| H A D | halDSCMB.c | 3739 MS_U32 _HAL_KTE_REG0_Merge(MS_U32 field, MS_U32 CMD, MS_U32 CAVid) in _HAL_KTE_REG0_Merge() argument 3745 … |( (field<<REG_KTE_SEL_SFT) ®_KTE_SEL_MSK ) //Field (0:LSAD 1:ESA 2:LSAS 3:SW 4:IV) in _HAL_KTE_REG0_Merge()
|
| /utopia/UTPA2-700.0.x/modules/dscmb/hal/k7u/dscmb/ |
| H A D | halDSCMB.c | 3839 MS_U32 _HAL_KTE_REG0_Merge(MS_U32 field, MS_U32 CMD, MS_U32 CAVid) in _HAL_KTE_REG0_Merge() argument 3845 … |( (field<<REG_KTE_SEL_SFT) ®_KTE_SEL_MSK ) //Field (0:LSAD 1:ESA 2:LSAS 3:SW 4:IV) in _HAL_KTE_REG0_Merge()
|
| /utopia/UTPA2-700.0.x/modules/dscmb/hal/curry/dscmb/ |
| H A D | halDSCMB.c | 3668 MS_U32 _HAL_KTE_REG0_Merge(MS_U32 field, MS_U32 CMD, MS_U32 CAVid) in _HAL_KTE_REG0_Merge() argument 3674 … |( (field<<REG_KTE_SEL_SFT) ®_KTE_SEL_MSK ) //Field (0:LSAD 1:ESA 2:LSAS 3:SW 4:IV) in _HAL_KTE_REG0_Merge()
|
| /utopia/UTPA2-700.0.x/modules/dscmb/hal/kano/dscmb/ |
| H A D | halDSCMB.c | 3668 MS_U32 _HAL_KTE_REG0_Merge(MS_U32 field, MS_U32 CMD, MS_U32 CAVid) in _HAL_KTE_REG0_Merge() argument 3674 … |( (field<<REG_KTE_SEL_SFT) ®_KTE_SEL_MSK ) //Field (0:LSAD 1:ESA 2:LSAS 3:SW 4:IV) in _HAL_KTE_REG0_Merge()
|
| /utopia/UTPA2-700.0.x/modules/dscmb/hal/k6/dscmb/ |
| H A D | halDSCMB.c | 3733 MS_U32 _HAL_KTE_REG0_Merge(MS_U32 field, MS_U32 CMD, MS_U32 CAVid) in _HAL_KTE_REG0_Merge() argument 3739 … |( (field<<REG_KTE_SEL_SFT) ®_KTE_SEL_MSK ) //Field (0:LSAD 1:ESA 2:LSAS 3:SW 4:IV) in _HAL_KTE_REG0_Merge()
|
| /utopia/UTPA2-700.0.x/modules/xc/api/xc/ |
| H A D | apiXC_PCMonitor.c.0 | 314 // It is possible IPM detect wrong field from IP2. Only for A5/A3 serial scaler.
|