OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sparam
(Results
1 - 6
of
6
) sorted by null
/external/eigen/blas/f2c/
srotm.c
16
integer *incy, real *
sparam
)
48
/* WITH
SPARAM
(1)=SFLAG, H HAS ONE OF THE FOLLOWING FORMS.. */
55
/* SEE SROTMG FOR A DESCRIPTION OF DATA STORAGE IN
SPARAM
. */
76
/*
SPARAM
(input/output) REAL array, dimension 5 */
77
/*
SPARAM
(1)=SFLAG */
78
/*
SPARAM
(2)=SH11 */
79
/*
SPARAM
(3)=SH21 */
80
/*
SPARAM
(4)=SH12 */
81
/*
SPARAM
(5)=SH22 */
89
--
sparam
;
[
all
...]
srotmg.c
16
*
sparam
)
55
/* WITH
SPARAM
(1)=SFLAG, H HAS ONE OF THE FOLLOWING FORMS.. */
62
/* LOCATIONS 2-4 OF
SPARAM
CONTAIN SH11,SH21,SH12, AND SH22 */
64
/* VALUE OF
SPARAM
(1) ARE NOT STORED IN
SPARAM
.) */
84
/*
SPARAM
(input/output) REAL array, dimension 5 */
85
/*
SPARAM
(1)=SFLAG */
86
/*
SPARAM
(2)=SH11 */
87
/*
SPARAM
(3)=SH21 */
88
/*
SPARAM
(4)=SH12 *
[
all
...]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedparam/
1-1.c
18
struct sched_param
sparam
;
local
24
sparam
.sched_priority = priority;
26
rc = pthread_setschedparam(pthread_self(), policy, &
sparam
);
31
rc = pthread_getschedparam(pthread_self(), &policy_1, &
sparam
);
36
//printf("policy: %d, priority: %d\n", policy_1,
sparam
.sched_priority);
37
if (policy_1 != policy ||
sparam
.sched_priority != priority) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedprio/
1-1.c
28
struct sched_param
sparam
;
local
34
sparam
.sched_priority = priority;
36
rc = pthread_setschedparam(pthread_self(), policy, &
sparam
);
41
rc = pthread_getschedparam(pthread_self(), &policy_1, &
sparam
);
46
printf("policy: %d, priority: %d\n", policy_1,
sparam
.sched_priority);
47
if (policy_1 != policy ||
sparam
.sched_priority != priority) {
58
rc = pthread_getschedparam(pthread_self(), &policy_1, &
sparam
);
63
printf("policy: %d, priority: %d\n", policy_1,
sparam
.sched_priority);
64
if (
sparam
.sched_priority != (priority + 1)) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getschedparam/
1-2.c
32
struct sched_param
sparam
;
local
38
sparam
.sched_priority = priority;
40
rc = pthread_setschedparam(pthread_self(), policy, &
sparam
);
45
rc = pthread_getschedparam(pthread_self(), &policy_1, &
sparam
);
56
if (
sparam
.sched_priority != priority) {
58
sparam
.sched_priority, priority);
1-1.c
31
struct sched_param
sparam
;
local
35
rc = pthread_getschedparam(pthread_self(), &policy, &
sparam
);
Completed in 1277 milliseconds