Searched refs:fval (Results 1 - 9 of 9) sorted by relevance

/external/oprofile/libutil/
H A Dop_cpufreq.c19 double fval = 0.0; local
39 if (sscanf(line, "cpu MHz : %lf", &fval) == 1)
42 if (sscanf(line, "clock : %lfMHz", &fval) == 1)
46 fval = uval / 1E6;
51 fval = uval / 1E6;
56 fval = uval * 3 / 2;
68 return fval;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DDESEngine.java439 int fval;
443 fval = SP7[ work & 0x3f];
444 fval |= SP5[(work >>> 8) & 0x3f];
445 fval |= SP3[(work >>> 16) & 0x3f];
446 fval |= SP1[(work >>> 24) & 0x3f];
448 fval |= SP8[ work & 0x3f];
449 fval |= SP6[(work >>> 8) & 0x3f];
450 fval |= SP4[(work >>> 16) & 0x3f];
451 fval |= SP2[(work >>> 24) & 0x3f];
452 left ^= fval;
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DDES.java317 int fval;
321 fval = SP7[work & 0x3f];
322 fval |= SP5[(work >>> 8) & 0x3f];
323 fval |= SP3[(work >>> 16) & 0x3f];
324 fval |= SP1[(work >>> 24) & 0x3f];
326 fval |= SP8[work & 0x3f];
327 fval |= SP6[(work >>> 8) & 0x3f];
328 fval |= SP4[(work >>> 16) & 0x3f];
329 fval |= SP2[(work >>> 24) & 0x3f];
330 left ^= fval;
[all...]
/external/qemu/
H A Dd3des.c324 register unsigned long fval, work, right, leftt; local
350 fval = SP7[ work & 0x3fL];
351 fval |= SP5[(work >> 8) & 0x3fL];
352 fval |= SP3[(work >> 16) & 0x3fL];
353 fval |= SP1[(work >> 24) & 0x3fL];
355 fval |= SP8[ work & 0x3fL];
356 fval |= SP6[(work >> 8) & 0x3fL];
357 fval |= SP4[(work >> 16) & 0x3fL];
358 fval |= SP2[(work >> 24) & 0x3fL];
359 leftt ^= fval;
[all...]
/external/srec/srec/cfront/
H A Dchelfep.c113 featdata fval; local
136 fval = (featdata) MAKEBYTE(scval);
137 return (fval);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Datom.c354 static int lReverse(int fval) argument
356 unsigned int in = fval;
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp809 double fval = strtod( ptr, endptr ); local
817 fval = fval2;
823 icvProcessSpecialDouble( fs, ptr, &fval, endptr );
825 return fval;
1004 double fval; local
1012 fval = icv_strtod( fs, ptr, &endptr );
1014 CV_CALL( icvProcessSpecialDouble( fs, endptr, &fval, &endptr ));*/
1017 node->data.f = fval;
1892 double fval; local
1899 fval
3302 double fval = node->data.f; local
[all...]
/external/v8/src/mips/
H A Dstub-cache-mips.cc926 Register fval,
945 __ And(fval, ival, Operand(kBinary32SignMask));
948 __ Movn(ival, scratch1, fval);
961 __ or_(scratch2, fval, scratch2);
962 __ Movz(fval, scratch2, scratch1); // Only if ival is equal to 1.
976 __ or_(fval, fval, scratch1);
984 __ or_(fval, fval, scratch1);
990 __ sw(fval, MemOperan
922 StoreIntAsFloat(MacroAssembler* masm, Register dst, Register wordoffset, Register ival, Register fval, Register scratch1, Register scratch2) argument
[all...]
/external/v8/src/arm/
H A Dstub-cache-arm.cc933 Register fval,
949 __ and_(fval, ival, Operand(kBinary32SignMask), SetCC);
963 __ orr(fval, fval, Operand(exponent_word_for_1), LeaveCC, eq);
977 __ orr(fval,
978 fval,
986 __ orr(fval,
987 fval,
991 __ str(fval, MemOperand(dst, wordoffset, LSL, 2));
929 StoreIntAsFloat(MacroAssembler* masm, Register dst, Register wordoffset, Register ival, Register fval, Register scratch1, Register scratch2) argument

Completed in 463 milliseconds