Searched refs:power (Results 1 - 25 of 154) sorted by relevance

1234567

/external/v8/src/
H A Dcached-powers.h23 // Returns a cached power-of-ten with a binary exponent in the range
27 DiyFp* power,
30 // Returns a cached power of ten x ~= 10^k such that
36 DiyFp* power,
H A Dfast-dtoa.cc19 // exponent, where 'w' is the result of multiplying the input by a cached power
197 // the power (the kappa) is increased.
215 // Returns the biggest power of ten that is less than or equal than the given
222 uint32_t* power,
229 *power = kTen9;
237 *power = kTen8;
245 *power = kTen7;
254 *power = kTen6;
262 *power = kTen5;
270 *power
220 BiggestPowerTen(uint32_t number, int number_bits, uint32_t* power, int* exponent) argument
[all...]
H A Dfixed-dtoa.cc63 // Modifies *this to *this MOD (2^power).
64 // Returns *this DIV (2^power).
65 int DivModPowerOf2(int power) { argument
66 if (power >= 64) {
67 int result = static_cast<int>(high_bits_ >> (power - 64));
68 high_bits_ -= static_cast<uint64_t>(result) << (power - 64);
71 uint64_t part_low = low_bits_ >> power;
72 uint64_t part_high = high_bits_ << (64 - power);
75 low_bits_ -= part_low << power;
/external/libgdx/gdx/src/com/badlogic/gdx/math/
H A DInterpolation.java128 final int power; field in class:Interpolation.Pow
130 public Pow (int power) { argument
131 this.power = power;
135 if (a <= 0.5f) return (float)Math.pow(a * 2, power) / 2;
136 return (float)Math.pow((a - 1) * 2, power) / (power % 2 == 0 ? -2 : 2) + 1;
141 public PowIn (int power) { argument
142 super(power);
146 return (float)Math.pow(a, power);
151 PowOut(int power) argument
163 final float value, power, min, scale; field in class:Interpolation.Exp
165 Exp(float value, float power) argument
179 ExpIn(float value, float power) argument
189 ExpOut(float value, float power) argument
201 final float value, power, scale, bounces; field in class:Interpolation.Elastic
203 Elastic(float value, float power, int bounces, float scale) argument
222 ElasticIn(float value, float power, int bounces, float scale) argument
233 ElasticOut(float value, float power, int bounces, float scale) argument
[all...]
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
H A Dnested.pass.cpp25 struct power struct
50 auto g = std::bind(power(), 2, _1);
/external/clang/test/Parser/
H A Dpragma-options.c12 #pragma options align=power
22 #pragma align=power
/external/libogg/macos/compat/sys/
H A Dtypes.h19 #ifndef __SYS_TYPES_H__ #define __SYS_TYPES_H__ 1 #include <MacTypes.h> #include <alloca.h> #include <string.h> typedef short int16_t; typedef long int32_t; typedef long long int64_t; #define vorbis_size32_t long #if defined(__cplusplus) extern "C" { #endif #pragma options align=power char *strdup(const char *inStr); #pragma options align=reset #if defined(__cplusplus) } #endif (…)
/external/libvorbis/macos/compat/sys/
H A Dtypes.h19 #ifndef __SYS_TYPES_H__ #define __SYS_TYPES_H__ 1 #include <MacTypes.h> #include <alloca.h> #include <string.h> typedef short int16_t; typedef long int32_t; typedef long long int64_t; #define vorbis_size32_t long #if defined(__cplusplus) extern "C" { #endif #pragma options align=power char *strdup(const char *inStr); #pragma options align=reset #if defined(__cplusplus) } #endif (…)
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2qos.c31 int power; local
38 power = fract = 0;
42 if (--power == -9) break;
49 power += 3;
54 while (power && fract)
55 if (power < 0) {
57 power++;
61 power--;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_internal-modexp.c17 const u8 *power, size_t power_len,
34 bignum_set_unsigned_bin(bn_exp, power, power_len) < 0 ||
16 crypto_mod_exp(const u8 *base, size_t base_len, const u8 *power, size_t power_len, const u8 *modulus, size_t modulus_len, u8 *result, size_t *result_len) argument
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_internal-modexp.c17 const u8 *power, size_t power_len,
34 bignum_set_unsigned_bin(bn_exp, power, power_len) < 0 ||
16 crypto_mod_exp(const u8 *base, size_t base_len, const u8 *power, size_t power_len, const u8 *modulus, size_t modulus_len, u8 *result, size_t *result_len) argument
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_internal-modexp.c17 const u8 *power, size_t power_len,
34 bignum_set_unsigned_bin(bn_exp, power, power_len) < 0 ||
16 crypto_mod_exp(const u8 *base, size_t base_len, const u8 *power, size_t power_len, const u8 *modulus, size_t modulus_len, u8 *result, size_t *result_len) argument
/external/icu/icu4c/source/layout/
H A DCoverageTables.cpp46 le_uint16 power = 1 << bit; local
47 le_uint16 extra = count - power;
48 le_uint16 probe = power;
H A DOpenTypeUtilities.cpp62 le_int32 power = 1 << bit; local
63 le_int32 extra = recordCount - power;
64 le_int32 probe = power;
101 le_int32 power = 1 << bit; local
102 le_int32 extra = recordCount - power;
103 le_int32 probe = power;
131 le_int32 power = 1 << highBit(count); local
132 le_int32 extra = count - power;
133 le_int32 probe = power;
153 le_int32 power local
[all...]
/external/icu/icu4c/source/layoutex/
H A DLXUtilities.cpp55 le_int32 power = 1 << highBit(count); local
56 le_int32 extra = count - power;
57 le_int32 probe = power;
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DTaggedRecord.java55 int power = 1 << log2;
56 int extra = count - power;
57 int probe = power;
/external/autotest/client/site_tests/network_EthernetStressPlug/
H A Dnetwork_EthernetStressPlug.py192 def _PowerEthernet(self, power=1):
193 """ Sends command to change the power state of ethernet.
195 power: 0 to unplug, 1 to plug.
201 fp.write('%d' % power)
205 (power, self.eth_authpath))
218 if power:
237 (self.interface, 'up' if power else 'down'))
239 'up' if power else 'down'])
241 raise error.TestError('Fail to change the power state of %s' %
244 def TestPowerEthernet(self, power
[all...]
/external/e2fsprogs/e2fsck/
H A Dcrc32defs.h23 # error CRC_LE_BITS must be a power of 2 between 1 and 8
31 # error CRC_BE_BITS must be a power of 2 between 1 and 8
/external/llvm/test/MC/AsmParser/
H A Dalign_invalid.s5 # ELF: error: alignment must be a power of 2
/external/opencv3/modules/cudev/include/opencv2/cudev/expr/
H A Dunary_func.hpp94 pow_(const SrcPtr& src, float power) argument
96 return makeExpr(transformPtr(src, bind2nd(pow_func<typename PtrTraits<SrcPtr>::value_type>(), power)));
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
H A DNordsieckStepInterpolator.java151 double power = ratio;
153 power *= ratio;
156 nDataI[j] *= power;
201 final double power = FastMath.pow(normalizedAbscissa, order);
203 final double d = nDataI[j] * power;
/external/opencv3/modules/cudaarithm/src/cuda/
H A Dmath.cu281 float power;
285 return cudev::saturate_cast<T>(__powf((float)e, power));
290 float power;
294 T res = cudev::saturate_cast<T>(__powf((float)e, power));
296 if ((e < 0) && (1 & static_cast<int>(power)))
304 float power;
308 return __powf(::fabs(e), power);
313 double power;
317 return ::pow(::fabs(e), power);
322 void powMat(const GpuMat& src, double power, cons
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
H A Dutils.py40 multiplied by a power of 2).
64 power = 3
66 part_size = math.ldexp(_MEGABYTE, power)
67 power += 1
/external/clang/test/Sema/
H A Dpragma-pack-and-options-align.c42 #pragma options align=power
/external/opencv3/modules/core/src/
H A Dmathfuncs.cpp898 int operator() ( const uchar * src, uchar * dst, int len, int power )
909 int p = power;
937 int operator() ( const schar * src, schar * dst, int len, int power) argument
948 int p = power;
976 int operator() ( const ushort * src, ushort * dst, int len, int power) argument
987 int p = power;
1015 int operator() ( const short * src, short * dst, int len, int power) argument
1026 int p = power;
1054 int operator() ( const int * src, int * dst, int len, int power) argument
1063 int p = power;
1091 operator ()( const float * src, float * dst, int len, int power) argument
1134 operator ()( const double * src, double * dst, int len, int power) argument
1222 int power = std::abs(power0); local
1244 iPow8u(const uchar* src, uchar* dst, int len, int power) argument
1249 iPow8s(const schar* src, schar* dst, int len, int power) argument
1254 iPow16u(const ushort* src, ushort* dst, int len, int power) argument
1259 iPow16s(const short* src, short* dst, int len, int power) argument
1264 iPow32s(const int* src, int* dst, int len, int power) argument
1269 iPow32f(const float* src, float* dst, int len, int power) argument
1274 iPow64f(const double* src, double* dst, int len, int power) argument
1290 ocl_pow(InputArray _src, double power, OutputArray _dst, bool is_ipower, int ipower) argument
[all...]

Completed in 838 milliseconds

1234567