/linux/Documentation/devicetree/bindings/media/ |
H A D | video-interface-devices.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/media/video-interface-devices.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Jacopo Mondi <jacopo@jmondi.org> 11 - Sakari Ailus <sakari.ailus@linux.intel.com> 14 flash-leds: 15 $ref: /schemas/types.yaml#/definitions/phandle-array 17 An array of phandles, each referring to a flash LED, a sub-node of the LED 20 lens-focus: [all …]
|
/titanic_50/usr/src/lib/libbc/sparc/inc/sparc/ |
H A D | asm_linkage.h | 38 * %fp->| | 39 * |-------------------------------| 41 * |-------------------------------| 43 * |-------------------------------|-\ 46 * |-------------------------------| > minimum stack frame 47 * | One word struct-ret address | | 48 * |-------------------------------| | 50 * %sp->| LOCAL register on overflow | | 51 * |-------------------------------|-/ 66 #define SA(X) (((X)+(STACK_ALIGN-1)) & ~(STACK_ALIGN-1)) [all …]
|
/titanic_50/usr/src/lib/libsqlite/src/ |
H A D | parse.y | 17 ** @(#) $Id: parse.y,v 1.112 2004/02/22 18:40:57 drh Exp $ 24 if( pParse->zErrMsg==0 ){ 45 int limit; /* The LIMIT value. -1 if there is no limit */ 93 create_table ::= CREATE(X) temp(T) TABLE nm(Y). { in CREATE() 94 sqliteStartTable(pParse,&X,&Y,T,0); in CREATE() 99 create_table_args ::= LP columnlist conslist_opt RP(X). { in RP() function 117 // keywords. Any non-standard keyword can also be an identifier. 149 // And "ids" is an identifer-or-string. 164 type ::= typename(X) LP signed RP(Y). {sqliteAddColumnType(pParse,&X,&Y);} in typename() 165 type ::= typename(X) LP signed COMMA signed RP(Y). in typename() [all …]
|
/titanic_50/usr/src/lib/libm/common/complex/ |
H A D | cpowf.c | 56 float x, y, u, v, t, c, s; in cpowf() local 61 y = F_IM(z); in cpowf() 65 hy = THE_WORD(y); in cpowf() 77 F_IM(ans) = y; in cpowf() 84 /* -x ** u is exp(i*pi*u)*pow(x,u) */ in cpowf() 85 t = powf(-x, u); in cpowf() 94 F_RE(ans) = F_IM(ans) = x + y + u; in cpowf() 96 v = fabsf(y); in cpowf() 99 t = atan2pif(y, x); in cpowf() 104 } else if (ix == iy) { /* if |x| == |y| */ in cpowf() [all …]
|
H A D | cexpf.c | 43 float x, y, c, s; in cexpf() local 48 y = F_IM(z); in cexpf() 50 hy = THE_WORD(y); in cexpf() 53 if (iy == 0) { /* y = 0 */ in cexpf() 55 F_IM(ans) = y; in cexpf() 56 } else if (ix == 0x7f800000) { /* x is +-inf */ in cexpf() 62 sincosf(y, &s, &c); in cexpf() 69 F_IM(ans) = y - y; in cexpf() 71 sincosf(y, &s, &c); in cexpf() 77 sincosf(y, &s, &c); in cexpf() [all …]
|
H A D | clogf.c | 41 float x, y, ax, ay; in clogf() local 46 y = F_IM(z); in clogf() 48 hy = THE_WORD(y); in clogf() 51 ay = fabsf(y); in clogf() 53 F_IM(ans) = atan2f(y, x); in clogf() 55 /* x or y is Inf or NaN */ in clogf() 64 int rp = __swapRP(fp_extended); in clogf() local 73 F_RE(ans) = -1.0f / ax; in clogf() 77 if (rp != fp_extended) in clogf() 78 (void) __swapRP(rp); in clogf()
|
H A D | catanf.c | 48 float x, y, ax, ay, t; in catanf() local 53 y = F_IM(z); in catanf() 55 ay = fabsf(y); in catanf() 57 hy = THE_WORD(y); in catanf() 70 F_IM(ans) = (fabsf(y) - ay) / (fabsf(y) - ay); in catanf() 72 } else if (iy >= 0x7f800000) { /* y is inf or NaN */ in catanf() 77 F_RE(ans) = (fabsf(x) - ax) / (fabsf(x) - ax); in catanf() 78 F_IM(ans) = y * y; in catanf() 85 * A = --- * atan2(2x, 1-x*x-y*y) = --- atan2(0,1-|y|) in catanf() 88 * 1 [ (y+1)*(y+1) ] 1 2 1 2y in catanf() [all …]
|
H A D | csinhf.c | 42 float x, y, S, C; in csinhf() local 48 y = F_IM(z); in csinhf() 51 hy = THE_WORD(y); in csinhf() 54 y = fabsf(y); in csinhf() 56 sincosf(y, &S, &C); in csinhf() 62 F_IM(ans) = y; in csinhf() 65 F_IM(ans) = x - y; in csinhf() 72 int rp = __swapRP(fp_extended); in csinhf() local 76 F_RE(ans) = (float)scalbn(C * t, n - 1); in csinhf() 77 F_IM(ans) = (float)scalbn(S * t, n - 1); in csinhf() [all …]
|
H A D | ccoshf.c | 42 float t, x, y, S, C; in ccoshf() local 48 y = F_IM(z); in ccoshf() 51 hy = THE_WORD(y); in ccoshf() 54 y = fabsf(y); in ccoshf() 56 sincosf(y, &S, &C); in ccoshf() 62 F_IM(ans) = y; in ccoshf() 65 F_IM(ans) = x - y; in ccoshf() 72 int rp = __swapRP(fp_extended); in ccoshf() local 76 F_RE(ans) = (float)scalbn(C * w, n - 1); in ccoshf() 77 F_IM(ans) = (float)scalbn(S * w, n - 1); in ccoshf() [all …]
|
/titanic_50/usr/src/lib/libm/common/R/ |
H A D | sinf.c | 44 1.85735322054308378716204874632872525989806770558e-0003, 45 -1.95035094218403635082921458859320791358115801259e-0004, 47 -3.31975110777873728964197739157371509422022905947e+0001, 48 1.09349482127188401868272000389539985058873853699e-0003, 49 -5.03324285989964979398034700054920226866107675091e-0004, 50 2.43792880266971107750418061559602239831538067410e-0005, 52 -3.63151270591815439197122504991683846785293207730e+0001, 53 0.636619772367581343075535, /* 2^ -1 * 1.45F306DC9C883 */ 56 6.077100506506192601475e-11, /* 2^-34 * 1.0B4611A626331 */ 76 double y, z, w; in sinf() local [all …]
|
H A D | cosf.c | 44 1.85735322054308378716204874632872525989806770558e-0003, 45 -1.95035094218403635082921458859320791358115801259e-0004, 47 -3.31975110777873728964197739157371509422022905947e+0001, 48 1.09349482127188401868272000389539985058873853699e-0003, 49 -5.03324285989964979398034700054920226866107675091e-0004, 50 2.43792880266971107750418061559602239831538067410e-0005, 52 -3.63151270591815439197122504991683846785293207730e+0001, 53 0.636619772367581343075535, /* 2^ -1 * 1.45F306DC9C883 */ 56 6.077100506506192601475e-11, /* 2^-34 * 1.0B4611A626331 */ 76 double y, z, w; in cosf() local [all …]
|
H A D | tanf.c | 41 4.46066928428959230679140546271810308098793029785e-0003, 43 -7.11410648161473480044492134766187518835067749023e-0001, 47 -1.50565540968422650891511693771462887525558471680e+0000, 48 -1.81484378878349295050043110677506774663925170898e+0000, 49 3.333335997532835641297409611782510896641e-0001, 51 0.636619772367581343075535, /* 2^ -1 * 1.45F306DC9C883 */ 54 6.077100506506192601475e-11, /* 2^-34 * 1.0B4611A626331 */ 76 double y, z, w; in tanf() local 84 y = (double)x; in tanf() 88 if (ix < 0x3c000000) { /* |x| < 2**-7 */ in tanf() [all …]
|
H A D | sincosf.c | 37 * S0 = 1.85735322054308378716204874632872525989806770558e-0003, 38 * S1 = -1.95035094218403635082921458859320791358115801259e-0004, 40 * S3 = -3.31975110777873728964197739157371509422022905947e+0001, 42 * with error bounded by |(sin(x) - S(x))/x| < 2**(-28.2), and 47 * C0 = 1.09349482127188401868272000389539985058873853699e-0003 48 * C1 = -5.03324285989964979398034700054920226866107675091e-0004 49 * C2 = 2.43792880266971107750418061559602239831538067410e-0005 51 * C4 = -3.63151270591815439197122504991683846785293207730e+0001 53 * with error bounded by |cos(x) - C(x)| < 2**(-34.2). 66 1.85735322054308378716204874632872525989806770558e-0003, [all …]
|
H A D | powf.c | 41 ln2 = 6.93147180559945286227e-01, /* 0x3fe62e42, 0xfefa39ef */ 49 A1 = 6.666910817935858533770138657139665608610e-0001, 51 t1 = 1.666663408349926379873111932994250726307e-0001; 90 3.07716586667536873e-02, 91 6.06246218164348399e-02, 92 8.96121586896871380e-02, 93 1.17783035656383456e-01, 94 1.45182009844497889e-01, 95 1.71850256926659228e-01, 96 1.97825743329919868e-01, [all …]
|
H A D | atan2f.c | 44 1.56237286204768313e-02, 45 1.66000375562312640e-02, 46 1.75763148444955872e-02, 47 1.85525586258889763e-02, 48 1.95287670414137082e-02, 49 2.05049382324763683e-02, 50 2.14810703409090559e-02, 51 2.24571615089905717e-02, 52 2.34332098794675855e-02, 53 2.44092135955758099e-02, [all …]
|
/titanic_50/usr/src/man/man5/ |
H A D | mm.5 | 8 mm \- text formatting (memorandum) macros 12 \fBnroff\fR \fB-mm\fR [\fIoptions\fR] \fIfilename\fR... 17 \fBtroff\fR \fB-mm\fR [\fIoptions\fR] \fIfilename\fR... 25 producing 2-column output on a terminal or lineprinter, or when reverse line 27 \fB-mm\fR macros are defined below. 30 Note: this \fB-mm\fR macro package is an extended version written at Berkeley 31 and is a superset of the standard \fB-mm\fR macro packages as supplied by Bell 112 \fB\&.1C\fR on y,y one column format on a new page 114 \fB\&.2C\fR [ \fIl\fR ] - y,y two column format \fIl\fR=line length 116 \fB\&.AE\fR - y end abstract [all …]
|
/titanic_50/usr/src/cmd/zic/ |
H A D | zic.c | 128 static zic_t rpytime(const struct rule *rp, int wantedy); 129 static void rulesub(struct rule *rp, 298 { "last-Sunday", TM_SUNDAY }, 299 { "last-Monday", TM_MONDAY }, 300 { "last-Tuesday", TM_TUESDAY }, 301 { "last-Wednesday", TM_WEDNESDAY }, 302 { "last-Thursday", TM_THURSDAY }, 303 { "last-Friday", TM_FRIDAY }, 304 { "last-Saturday", TM_SATURDAY }, 394 eats(name, num, (char *)NULL, -1); [all …]
|
/linux/drivers/s390/char/ |
H A D | raw3270.c | 1 // SPDX-License-Identifier: GPL-2.0 3 * IBM/3270 Driver - core functions. 54 unsigned char *ascebc; /* ascii -> ebcdic table */ 64 /* raw3270->state */ 71 /* raw3270->flags */ 72 #define RAW3270_FLAGS_14BITADDR 0 /* 14-bit buffer addresses */ 99 static void __raw3270_disconnect(struct raw3270 *rp); 115 static inline int raw3270_state_ready(struct raw3270 *rp) in raw3270_state_ready() argument 117 return rp->state == RAW3270_STATE_READY; in raw3270_state_ready() 120 void raw3270_buffer_address(struct raw3270 *rp, char *cp, int x, int y) in raw3270_buffer_address() argument [all …]
|
/titanic_50/usr/src/cmd/fm/fmdump/common/ |
H A D | fmdump.c | 140 fmdump_date(char *buf, size_t len, const fmd_log_record_t *rp) in fmdump_date() argument 142 if (rp->rec_sec > LONG_MAX) { in fmdump_date() 143 fmdump_warn("record time is too large for 32-bit utility\n"); in fmdump_date() 144 (void) snprintf(buf, len, "0x%llx", rp->rec_sec); in fmdump_date() 146 time_t tod = (time_t)rp->rec_sec; in fmdump_date() 149 tod < now - 6L*30L*24L*60L*60L) { /* 6 months ago */ in fmdump_date() 150 (void) strftime(buf, len, "%b %d %Y %T", in fmdump_date() 155 (void) snprintf(buf + sz, len - sz, ".%4.4llu", in fmdump_date() 156 rp->rec_nsec / (NANOSEC / 10000)); in fmdump_date() 164 fmdump_year(char *buf, size_t len, const fmd_log_record_t *rp) in fmdump_year() argument [all …]
|
/linux/arch/m68k/fpsp040/ |
H A D | bindec.S | 12 | value in memory; d0 contains the k-factor sign-extended 13 | to 32-bits. The input may be either normalized, 18 | Saves and Modifies: D2-D7,A2,FP2 23 | The k-factor is saved for use in d7. Clear the 45 | k-factor can dictate either the total number of digits, 67 | A9. Scale X -> Y. 74 | compensated for by 'or-ing' in the INEX2 flag to 75 | the lsb of Y. 81 | A12. Calculate YINT = FINT(Y) according to user's rounding 87 | or less than LEN -1 digits, adjust ILOG and repeat from [all …]
|
/titanic_50/usr/src/uts/sparc/v9/sys/ |
H A D | privregs.h | 69 int r_y; /* the y register */ 79 #define lwptoregs(lwp) ((struct regs *)((lwp)->lwp_regs)) 80 #define lwptofpu(lwp) ((kfpu_t *)((lwp)->lwp_fpu)) 86 #define SAVE_GLOBALS(RP) \ argument 87 stx %g1, [RP + G1_OFF]; \ 88 stx %g2, [RP + G2_OFF]; \ 89 stx %g3, [RP + G3_OFF]; \ 90 stx %g4, [RP + G4_OFF]; \ 91 stx %g5, [RP + G5_OFF]; \ 92 stx %g6, [RP + G6_OFF]; \ [all …]
|
/linux/arch/sparc/kernel/ |
H A D | signal32.c | 1 // SPDX-License-Identifier: GPL-2.0 50 unsigned int extramask[_COMPAT_NSIG_WORDS - 1]; 72 * 16-byte aligned, therefore we can always enforce that the restore 78 ((unsigned long)fp) > 0x100000000ULL - fplen) in invalid_frame_pointer() 94 /* Always make any pending restarted system calls return -EINTR */ in do_sigreturn32() 95 current->restart_block.fn = do_no_restart_syscall; in do_sigreturn32() 99 regs->u_regs[UREG_FP] &= 0x00000000ffffffffUL; in do_sigreturn32() 100 sf = (struct signal_frame32 __user *) regs->u_regs[UREG_FP]; in do_sigreturn32() 106 if (get_user(ufp, &sf->info.si_regs.u_regs[UREG_FP])) in do_sigreturn32() 112 if (__get_user(pc, &sf->info.si_regs.pc) || in do_sigreturn32() [all …]
|
/titanic_50/usr/src/lib/libsqlite/tool/ |
H A D | lemon.c | 107 int SetUnion(/* char *A,char *B */); /* A <- A U B, thru element N */ 109 #define SetFind(X,Y) (X[Y]) /* True if Y is in set X */ argument 129 int prec; /* Precedence if defined (-1 otherwise) */ 136 char *firstset; /* First-set for all rules of this symbol */ 151 struct symbol *lhs; /* Left-hand side of the rule */ 168 ** Configurations also contain a follow-set which is a list of terminal 172 struct rule *rp; /* The rule upon which the configuration is based */ member 174 char *fws; /* Follow-set for this configuration only */ 175 struct plink *fplp; /* Follow-set forward propagation links */ 176 struct plink *bplp; /* Follow-set backwards propagation links */ [all …]
|
/titanic_50/usr/src/cmd/awk_xpg4/ |
H A D | awk4.c | 23 * awk -- functions 36 #include "y.tab.h" 52 * Usage: y = exp(x) 53 * y = exp() 82 * Usage: y = log(x) 83 * y = log() 97 * Usage: y = sqrt(x) 98 * y = sqrt() 112 * Usage: y = sin(x) 124 * Usage: y = cos(x) [all …]
|
/linux/Documentation/ABI/testing/ |
H A D | sysfs-devices-mapping | 9 For example, on 4-die Xeon platform with up to 6 IIO stacks per 14 -r--r--r-- /sys/devices/uncore_iio_0/die0 15 -r--r--r-- /sys/devices/uncore_iio_0/die1 16 -r--r--r-- /sys/devices/uncore_iio_0/die2 17 -r--r--r-- /sys/devices/uncore_iio_0/die3 31 IIO PMU 0 on die 0 belongs to PCI RP on bus 0x00, domain 0x0000 32 IIO PMU 0 on die 1 belongs to PCI RP on bus 0x40, domain 0x0000 33 IIO PMU 0 on die 2 belongs to PCI RP on bus 0x80, domain 0x0000 34 IIO PMU 0 on die 3 belongs to PCI RP on bus 0xc0, domain 0x0000 41 value that means UPI link number X on die Y is connected to UPI [all …]
|