Home
last modified time | relevance | path

Searched refs:tscalar (Results 1 – 15 of 15) sorted by relevance

/dports/devel/dev86/dev86-0.16.20/bcc/
H A Dassign.c24 scalar_t tscalar; local
46 tscalar = target->type->scalar;
56 if (tscalar & RSCALAR)
67 if (tscalar & DOUBLE)
76 if (tscalar & DOUBLE)
87 else if (tscalar & FLOAT)
115 if (tscalar & CHAR)
121 if (tscalar & DLONG)
349 scalar_t tscalar; local
362 if (tscalar & UNSIGNED)
[all …]
H A Dhardop.c245 scalar_t tscalar; local
265 tscalar = target->type->scalar;
272 tscalar = target->type->scalar;
274 resultscalar = sscalar | tscalar;
276 resultchar = sscalar & tscalar & CHAR;
288 ((tscalar & CHAR && !(sscalar & CHAR) &&
292 sscalar = tscalar;
293 tscalar = target->type->scalar;
310 if (!(tscalar & CHAR) &&
375 if (!(tscalar & CHAR) || op != ANDOP)
[all …]
H A Dsoftop.c31 scalar_t tscalar; local
36 if ((tscalar = target->type->scalar) & DLONG)
41 if (tscalar & RSCALAR)
47 resultscalar = tscalar;
48 uflag = tscalar & UNSIGNED;
55 if ((op_t) op == MULOP && sscalar & CHAR && tscalar & CHAR &&
H A Dglogcode.c103 scalar_t tscalar; local
108 tscalar = target->type->scalar;
111 (sscalar & CHAR && !(tscalar & CHAR)) ||
112 ((sscalar & CHAR || !(tscalar & CHAR)) &&
114 (tscalar & DLONG && target->indcount != 0))
119 sscalar = tscalar;
120 tscalar = tempscalar;
122 if ((sscalar & CHAR && tscalar & CHAR &&
124 (sscalar | tscalar) & UNSIGNED ||
142 if (tscalar & CHAR)
[all …]
/dports/lang/perl5.34/perl-5.34.0/dist/Storable/t/
H A Dtied_hook.t184 @tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
187 is(ref tied $$tscalar, 'TIED_SCALAR');
191 @new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
200 is($$tscalar, 'foo');
H A Dtied.t175 @tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
178 is(ref tied $$tscalar, 'TIED_SCALAR');
182 @new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
/dports/lang/perl5.32/perl-5.32.1/dist/Storable/t/
H A Dtied_hook.t184 @tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
187 is(ref tied $$tscalar, 'TIED_SCALAR');
191 @new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
200 is($$tscalar, 'foo');
H A Dtied.t175 @tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
178 is(ref tied $$tscalar, 'TIED_SCALAR');
182 @new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
/dports/lang/perl5.30/perl-5.30.3/dist/Storable/t/
H A Dtied_hook.t184 @tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
187 is(ref tied $$tscalar, 'TIED_SCALAR');
191 @new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
200 is($$tscalar, 'foo');
H A Dtied.t175 @tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
178 is(ref tied $$tscalar, 'TIED_SCALAR');
182 @new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
/dports/devel/p5-Storable/Storable-3.25/t/
H A Dtied_hook.t184 @tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
187 is(ref tied $$tscalar, 'TIED_SCALAR');
191 @new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
200 is($$tscalar, 'foo');
H A Dtied.t175 @tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
178 is(ref tied $$tscalar, 'TIED_SCALAR');
182 @new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/dist/Storable/t/
H A Dtied_hook.t184 @tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
187 is(ref tied $$tscalar, 'TIED_SCALAR');
191 @new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
200 is($$tscalar, 'foo');
H A Dtied.t175 @tied = ($tscalar, $tarray, $thash) = @{$root->[$#{$root}]};
178 is(ref tied $$tscalar, 'TIED_SCALAR');
182 @new = ($$tscalar, $tarray->[0], $thash->{'attribute'});
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dheur_dualval.c819 SCIP_Real tscalar = 1.0; in createSolFromSubScipSol() local
820 SCIP_CALL( SCIPgetProbvarSum(heurdata->subscip, &subvar, &tscalar, &tconstant) ); in createSolFromSubScipSol()
824 if( REALABS(tscalar) > 0.0 ) in createSolFromSubScipSol()
831 transval = tscalar * transval + tconstant; in createSolFromSubScipSol()