Home
last modified time | relevance | path

Searched refs:t (Results 1 – 25 of 470) sorted by relevance

12345678910>>...19

/u-boot/fs/yaffs2/
A Dyaffs_packedtags2.c57 t->ecc_result, t->block_bad, t->chunk_used, t->obj_id, in yaffs_dump_tags2()
58 t->chunk_id, t->n_bytes, t->is_deleted, t->serial_number, in yaffs_dump_tags2()
59 t->seq_number); in yaffs_dump_tags2()
65 if (t->chunk_id != 0 || !t->extra_available) in yaffs_check_tags_extra_packable()
114 yaffs_pack_tags2_tags_only(&pt->t, t); in yaffs_pack_tags2()
130 t->block_bad = 0; in yaffs_unpack_tags2_tags_only()
131 t->chunk_used = 1; in yaffs_unpack_tags2_tags_only()
135 t->is_deleted = 0; in yaffs_unpack_tags2_tags_only()
141 t->chunk_id = 0; in yaffs_unpack_tags2_tags_only()
142 t->n_bytes = 0; in yaffs_unpack_tags2_tags_only()
[all …]
A Dyaffs_packedtags1.c26 const struct yaffs_ext_tags *t) in yaffs_pack_tags1() argument
28 pt->chunk_id = t->chunk_id; in yaffs_pack_tags1()
29 pt->serial_number = t->serial_number; in yaffs_pack_tags1()
30 pt->n_bytes = t->n_bytes; in yaffs_pack_tags1()
31 pt->obj_id = t->obj_id; in yaffs_pack_tags1()
43 t->block_bad = 0; in yaffs_unpack_tags1()
45 t->block_bad = 1; in yaffs_unpack_tags1()
46 t->chunk_used = 1; in yaffs_unpack_tags1()
47 t->obj_id = pt->obj_id; in yaffs_unpack_tags1()
48 t->chunk_id = pt->chunk_id; in yaffs_unpack_tags1()
[all …]
A Dyaffs_ecc.c93 t = 0; in yaffs_ecc_calc()
95 t |= 0x80; in yaffs_ecc_calc()
97 t |= 0x40; in yaffs_ecc_calc()
99 t |= 0x20; in yaffs_ecc_calc()
101 t |= 0x10; in yaffs_ecc_calc()
103 t |= 0x08; in yaffs_ecc_calc()
105 t |= 0x04; in yaffs_ecc_calc()
107 t |= 0x02; in yaffs_ecc_calc()
109 t |= 0x01; in yaffs_ecc_calc()
112 t = 0; in yaffs_ecc_calc()
[all …]
A Dyaffs_packedtags2.h32 struct yaffs_packed_tags2_tags_only t; member
38 const struct yaffs_ext_tags *t, int tags_ecc);
39 void yaffs_unpack_tags2(struct yaffs_ext_tags *t, struct yaffs_packed_tags2 *pt,
44 const struct yaffs_ext_tags *t);
45 void yaffs_unpack_tags2_tags_only(struct yaffs_ext_tags *t,
/u-boot/lib/
A Dsmbios.c215 if (!t->bios_ver) in smbios_write_type0()
217 if (t->bios_ver) in smbios_write_type0()
248 unmap_sysmem(t); in smbios_write_type0()
270 strncpy((char *)t->uuid, serial_str, sizeof(t->uuid)); in smbios_write_type1()
279 unmap_sysmem(t); in smbios_write_type1()
304 unmap_sysmem(t); in smbios_write_type2()
328 unmap_sysmem(t); in smbios_write_type3()
383 t->processor_family2 = t->processor_family; in smbios_write_type4()
387 unmap_sysmem(t); in smbios_write_type4()
404 unmap_sysmem(t); in smbios_write_type32()
[all …]
/u-boot/lib/lzo/
A Dlzo1x_decompress.c148 size_t t; in lzo1x_decompress_safe() local
154 if (t < 4) in lzo1x_decompress_safe()
167 t = *ip++; in lzo1x_decompress_safe()
168 if (t >= 16) in lzo1x_decompress_safe()
174 t += 255; in lzo1x_decompress_safe()
195 t -= 4; in lzo1x_decompress_safe()
210 t = *ip++; in lzo1x_decompress_safe()
234 t = (t >> 5) - 1; in lzo1x_decompress_safe()
241 t &= 31; in lzo1x_decompress_safe()
260 t &= 7; in lzo1x_decompress_safe()
[all …]
/u-boot/fs/jffs2/
A Dcompr_lzo.c170 if (t < 4) in lzo1x_decompress()
182 t = *ip++; in lzo1x_decompress()
185 if (t == 0) in lzo1x_decompress()
190 t += 255; in lzo1x_decompress()
213 t -= 4; in lzo1x_decompress()
238 t = *ip++; in lzo1x_decompress()
261 t = (t >> 5) - 1; in lzo1x_decompress()
269 t &= 31; in lzo1x_decompress()
292 t &= 7; in lzo1x_decompress()
340 t -= 4; in lzo1x_decompress()
[all …]
/u-boot/drivers/rtc/
A Dmvrtc.c40 t->tm_sec = bcd2bin((time >> MVRTC_SEC_SFT) & MVRTC_SEC_MSK); in __mv_rtc_get()
41 t->tm_min = bcd2bin((time >> MVRTC_MIN_SFT) & MVRTC_MIN_MSK); in __mv_rtc_get()
44 t->tm_wday--; in __mv_rtc_get()
50 t->tm_year += CENTURY * 100; in __mv_rtc_get()
53 t->tm_yday = 0; in __mv_rtc_get()
54 t->tm_isdst = 0; in __mv_rtc_get()
60 int rtc_get(struct rtc_time *t) in rtc_get() argument
65 return __mv_rtc_get(regs, t); in rtc_get()
75 if ((t->tm_year / 100) != CENTURY) in __mv_rtc_set()
99 int rtc_set(struct rtc_time *t) in rtc_set() argument
[all …]
/u-boot/arch/powerpc/include/asm/
A Datomic.h24 int t; in atomic_add_return() local
31 : "=&r" (t), "=m" (*v) in atomic_add_return()
35 return t; in atomic_add_return()
40 int t; in atomic_sub_return() local
47 : "=&r" (t), "=m" (*v) in atomic_sub_return()
51 return t; in atomic_sub_return()
56 int t; in atomic_inc_return() local
63 : "=&r" (t), "=m" (*v) in atomic_inc_return()
67 return t; in atomic_inc_return()
72 int t; in atomic_dec_return() local
[all …]
/u-boot/arch/mips/dts/
A Dmrvl,octeon-ebb7304.dts41 cavium,t-adr = <10>;
42 cavium,t-ce = <50>;
43 cavium,t-oe = <50>;
44 cavium,t-we = <35>;
47 cavium,t-pause = <0>;
50 cavium,t-rd-dly = <0>;
59 cavium,t-adr = <10>;
60 cavium,t-ce = <10>;
61 cavium,t-oe = <160>;
62 cavium,t-we = <100>;
[all …]
/u-boot/fs/zfs/
A Dzfs_sha256.c79 uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64]; in SHA256Transform() local
81 for (t = 0; t < 16; t++, cp += 4) in SHA256Transform()
82 W[t] = (cp[0] << 24) | (cp[1] << 16) | (cp[2] << 8) | cp[3]; in SHA256Transform()
84 for (t = 16; t < 64; t++) in SHA256Transform()
85 W[t] = sigma1(W[t - 2]) + W[t - 7] + in SHA256Transform()
86 sigma0(W[t - 15]) + W[t - 16]; in SHA256Transform()
91 for (t = 0; t < 64; t++) { in SHA256Transform()
92 T1 = h + SIGMA1(e) + Ch(e, f, g) + SHA256_K[t] + W[t]; in SHA256Transform()
/u-boot/drivers/net/fsl-mc/dpio/
A Dqbman_private.h59 #define DECLARE_CODEC32(t) \ argument
60 static inline uint32_t e32_##t(uint32_t lsoffset, uint32_t width, t val) \
62 BUG_ON(width > (sizeof(t) * 8)); \
65 static inline t d32_##t(uint32_t lsoffset, uint32_t width, uint32_t val) \
67 BUG_ON(width > (sizeof(t) * 8)); \
68 return (t)((val >> lsoffset) & MAKE_MASK32(width)); \
70 static inline uint32_t i32_##t(uint32_t lsoffset, uint32_t width, \
73 BUG_ON(width > (sizeof(t) * 8)); \
74 return e32_##t(lsoffset, width, d32_##t(lsoffset, width, val)); \
76 static inline uint32_t r32_##t(uint32_t lsoffset, uint32_t width, \
[all …]
/u-boot/lib/bzip2/
A Dbzlib_compress.c308 for (t = 0; t < BZ_N_GROUPS; t++) in sendMTFValues()
365 for (t = 0; t < nGroups; t++) fave[t] = 0; in sendMTFValues()
367 for (t = 0; t < nGroups; t++) in sendMTFValues()
397 for (t = 0; t < nGroups; t++) cost[t] = 0; in sendMTFValues()
432 for (t = 0; t < nGroups; t++) cost[t] += s->len[t][icv]; in sendMTFValues()
441 for (t = 0; t < nGroups; t++) in sendMTFValues()
442 if (cost[t] < bc) { bc = cost[t]; bt = t; }; in sendMTFValues()
480 for (t = 0; t < nGroups; t++) in sendMTFValues()
490 for (t = 0; t < nGroups; t++) in sendMTFValues()
522 for (t = 0; t < nGroups; t++) { in sendMTFValues()
[all …]
/u-boot/drivers/video/
A Dvideomodes.c395 if (EDID_DETAILED_TIMING_PIXEL_CLOCK(*t) == 0 || in video_edid_dtd_to_ctfb_res_modes()
396 EDID_DETAILED_TIMING_HORIZONTAL_ACTIVE(*t) == 0 || in video_edid_dtd_to_ctfb_res_modes()
398 EDID_DETAILED_TIMING_VERTICAL_ACTIVE(*t) == 0 || in video_edid_dtd_to_ctfb_res_modes()
399 EDID_DETAILED_TIMING_VERTICAL_BLANKING(*t) == 0 || in video_edid_dtd_to_ctfb_res_modes()
400 EDID_DETAILED_TIMING_HSYNC_OFFSET(*t) == 0 || in video_edid_dtd_to_ctfb_res_modes()
401 EDID_DETAILED_TIMING_VSYNC_OFFSET(*t) == 0 || in video_edid_dtd_to_ctfb_res_modes()
403 EDID_DETAILED_TIMING_FLAG_STEREO(*t) != 0) in video_edid_dtd_to_ctfb_res_modes()
428 margin = EDID_DETAILED_TIMING_VERTICAL_BLANKING(*t) - in video_edid_dtd_to_ctfb_res_modes()
436 if (EDID_DETAILED_TIMING_FLAG_HSYNC_POLARITY(*t)) in video_edid_dtd_to_ctfb_res_modes()
438 if (EDID_DETAILED_TIMING_FLAG_VSYNC_POLARITY(*t)) in video_edid_dtd_to_ctfb_res_modes()
[all …]
/u-boot/post/lib_powerpc/fpu/
A Ddarwin-ldouble.c92 double t, tau, u, v, w; in __gcc_qmul() local
94 t = a * c; /* Highest order double term. */ in __gcc_qmul()
96 if (unlikely(t == 0) /* Preserve -0. */ in __gcc_qmul()
97 || nonfinite(t)) in __gcc_qmul()
98 return t; in __gcc_qmul()
104 asm("fmsub %0,%1,%2,%3" : "=f"(tau) : "f"(a), "f"(c), "f"(t)); in __gcc_qmul()
106 tau = fmsub(a, c, t); in __gcc_qmul()
111 u = t + tau; in __gcc_qmul()
117 z.dval[1] = (t - u) + tau; in __gcc_qmul()
/u-boot/board/Synology/ds109/
A Dds109.c122 struct tag_mv_uboot *t; in setup_board_tags() local
127 t = (struct tag_mv_uboot *)&params->u; in setup_board_tags()
129 t->uboot_version = VER_NUM; in setup_board_tags()
132 t->uboot_version |= boardId; in setup_board_tags()
134 t->tclk = CONFIG_SYS_TCLK; in setup_board_tags()
135 t->sysclk = CONFIG_SYS_TCLK*2; in setup_board_tags()
137 t->isusbhost = 1; in setup_board_tags()
139 memset(t->macaddr[i], 0, sizeof(t->macaddr[i])); in setup_board_tags()
140 t->mtu[i] = 0; in setup_board_tags()
/u-boot/board/nokia/rx51/
A Drx51.c146 while (t->hdr.tag) { in reuse_omap_atags()
147 switch (t->hdr.tag) { in reuse_omap_atags()
167 if (t->u.uart.enabled_uarts) in reuse_omap_atags()
176 t = tag_omap_next(t); in reuse_omap_atags()
190 if (t->hdr.tag != ATAG_CORE) in reuse_atags()
198 switch (t->hdr.tag) { in reuse_atags()
209 t = tag_next(t); in reuse_atags()
266 struct tag_omap *t; in setup_board_tags() local
307 memcpy(t, &omap[i], size); in setup_board_tags()
311 t->u.uart.enabled_uarts = 0; in setup_board_tags()
[all …]
/u-boot/scripts/coccinelle/api/alloc/
A Dalloc_cast.cocci40 t << r1.T;
43 if m.search(t) != None:
58 t << r1.T;
61 if m.search(t) != None:
85 t << r2.T;
88 if m.search(t) != None:
91 coccilib.org.print_safe_todo(p[0], t)
95 t << r2.T;
98 if m.search(t) != None:
101 msg="WARNING: casting value returned by memory allocation function to (%s *) is useless." % (t)
/u-boot/arch/arm/include/asm/
A Dprocessor.h89 static inline unsigned long thread_saved_pc(struct thread_struct *t) in thread_saved_pc() argument
91 return t->save ? pc_pointer(t->save->pc) : 0; in thread_saved_pc()
94 static inline unsigned long thread_saved_fp(struct thread_struct *t) in thread_saved_fp() argument
96 return t->save ? t->save->fp : 0; in thread_saved_fp()
/u-boot/arch/nds32/include/asm/
A Dsetup.h150 #define tag_next(t) ((struct tag *)((u32 *)(t) + (t)->hdr.size)) argument
153 #define for_each_tag(t, base) \ argument
154 for (t = base; t->hdr.size; t = tag_next(t))
/u-boot/post/drivers/
A Drtc.c61 time_t t = rtc_mktime(tm) + sec; in rtc_post_restore() local
64 rtc_to_tm(t, &ntm); in rtc_post_restore()
117 time_t t; in rtc_post_test() local
126 t = rtc_mktime(&tm); in rtc_post_test()
127 rtc_to_tm(t, &tm); in rtc_post_test()
148 time_t t; in rtc_post_test() local
157 t = rtc_mktime(&tm); in rtc_post_test()
159 rtc_to_tm(t, &tm); in rtc_post_test()
/u-boot/include/asm-generic/
A Dioctl.h74 #define _IOC_TYPECHECK(t) \ argument
75 ((sizeof(t) == sizeof(t[1]) && \
76 sizeof(t) < (1 << _IOC_SIZEBITS)) ? \
77 sizeof(t) : __invalid_size_argument_for_IOC)
79 #define _IOC_TYPECHECK(t) (sizeof(t)) argument
/u-boot/cmd/
A Dpxe_utils.c792 if (!t->val) in get_string()
811 return t->val; in get_string()
871 get_keyword(t); in get_token()
899 struct token t; in parse_sliteral() local
909 *dst = t.val; in parse_sliteral()
919 struct token t; in parse_integer() local
931 free(t.val); in parse_integer()
990 struct token t; in parse_menu() local
1029 struct token t; in parse_label_menu() local
1095 struct token t; in parse_label() local
[all …]
/u-boot/doc/
A DREADME.440-DDR-performance41 ttcp-t: socket
42 ttcp-t: connect
43 ttcp-t: buflen=8192, nbuf=2048, align=16384/0, port=5000 tcp ->
45 ttcp-t: 16777216 bytes in 0.28 real seconds = 454.29 Mbit/sec +++
46 ttcp-t: 2048 I/O calls, msec/call = 0.14, calls/sec = 7268.57
47 ttcp-t: 0.0user 0.1sys 0:00real 60% 0i+0d 0maxrss 0+2pf 3+1506csw
81 ttcp-t: socket
82 ttcp-t: connect
83 ttcp-t: buflen=8192, nbuf=2048, align=16384/0, port=5000 tcp ->
86 ttcp-t: 2048 I/O calls, msec/call = 0.08, calls/sec = 12864.89
[all …]
/u-boot/arch/x86/include/asm/
A Dmtrr.h58 #define MTRR_FIX_TYPE(t) ((t << 24) | (t << 16) | (t << 8) | t) argument

Completed in 30 milliseconds

12345678910>>...19