HomeSort by relevance Sort by last modified time
    Searched defs:power (Results 101 - 125 of 227) sorted by null

1 2 3 45 6 7 8 910

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
transformer.py 725 def power(self, nodelist): member in class:Transformer
726 # power: atom trailer* ('**' factor)*
731 return Power([node, self.com_node(nodelist[i+1])],
    [all...]
  /external/ImageMagick/MagickCore/
enhance.c 460 % <Power> 1.0 0.8 1.5 </Power>
468 % which includes the slop, offset, and power for each of the RGB channels
495 power;
563 color_correction.red.power=1.0;
566 color_correction.green.power=1.0;
569 color_correction.blue.power=1.0;
576 *power,
644 power=GetXMLTreeChild(sop,"Power");
489 power; member in struct:_Correction
570 *power, local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NFRule.java 71 * The rule's radix (the radix to the power of the exponent equals
77 * The rule's exponent (the radix raised to the power of the exponent
171 && rule1.baseValue % (power(rule1.radix, rule1.exponent)) == 0)
556 * value. This will be the highest power the radix can be raised to
571 if (power(radix, (short)(tempResult + 1)) <= baseValue) {
728 return power(radix, exponent);
762 toInsertInto.insert(pos, rulePatternFormat.format(number / power(radix, exponent)));
834 static long power(long base, short exponent) { method
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NFRule.java 70 * The rule's radix (the radix to the power of the exponent equals
76 * The rule's exponent (the radix raised to the power of the exponent
170 && rule1.baseValue % (power(rule1.radix, rule1.exponent)) == 0)
555 * value. This will be the highest power the radix can be raised to
570 if (power(radix, (short)(tempResult + 1)) <= baseValue) {
727 return power(radix, exponent);
761 toInsertInto.insert(pos, rulePatternFormat.format(number / power(radix, exponent)));
833 static long power(long base, short exponent) { method
    [all...]
  /external/python/cpython2/Lib/compiler/
transformer.py 725 def power(self, nodelist): member in class:Transformer
726 # power: atom trailer* ('**' factor)*
731 return Power([node, self.com_node(nodelist[i+1])],
    [all...]
  /external/speex/libspeex/
mdf.c 161 spx_word32_t Davg1; /* 1st recursive average of the residual power difference */
162 spx_word32_t Davg2; /* 2nd recursive average of the residual power difference */
166 spx_word32_t *power; /* Power of the far-end signal */ member in struct:SpeexEchoState_
167 spx_float_t *power_1;/* Inverse power of far-end */
233 /** Compute power spectrum of a half-complex (packed) vector */
245 /** Compute power spectrum of a half-complex (packed) vector and accumulate */
257 /** Compute cross-power spectrum of a half-complex (packed) vectors and add to acc */
336 /** Compute weighted cross-power spectrum of a half-complex (packed) vector with conjugate */
465 st->power = (spx_word32_t*)speex_alloc((frame_size+1)*sizeof(spx_word32_t))
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/power/
PowerNotificationWarnings.java 17 package com.android.systemui.power;
PowerUI.java 17 package com.android.systemui.power;
  /frameworks/base/services/core/java/com/android/server/power/
Notifier.java 17 package com.android.server.power;
61 * Sends broadcasts about important power state changes.
63 * This methods of this class may be called by the power manager service while
344 // communication between dream manager service and power manager
637 // Broadcasted power state is unknown. Send wake up.
641 // Broadcasted power state is awake. Send asleep if needed.
651 // Broadcasted power state is asleep. Send awake if needed.
    [all...]
ShutdownThread.java 18 package com.android.server.power;
155 // ensure that only one thread is trying to power down.
414 * Shuts off power regardless of radio state if the allotted time has passed.
679 // Shutdown power
  /libcore/ojluni/src/main/java/java/awt/font/
NumericShaper.java 1483 int power = 1 << getHighBit(length); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
transformer.py 725 def power(self, nodelist): member in class:Transformer
726 # power: atom trailer* ('**' factor)*
731 return Power([node, self.com_node(nodelist[i+1])],
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
transformer.py 725 def power(self, nodelist): member in class:Transformer
726 # power: atom trailer* ('**' factor)*
731 return Power([node, self.com_node(nodelist[i+1])],
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
transformer.py 725 def power(self, nodelist): member in class:Transformer
726 # power: atom trailer* ('**' factor)*
731 return Power([node, self.com_node(nodelist[i+1])],
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
transformer.py 725 def power(self, nodelist): member in class:Transformer
726 # power: atom trailer* ('**' factor)*
731 return Power([node, self.com_node(nodelist[i+1])],
    [all...]
  /system/update_engine/
payload_state.cc 515 // E.g. if payload_attempt_number is over 30, limit power to 30.
516 int power = min(GetFullPayloadAttemptNumber() - 1, kMaxShifts); local
520 num_days = min(num_days << power, kMaxBackoffDays);
    [all...]
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java 412 final int power = 1 - (int) d; local
413 final float magnitude = (float) Math.pow(10, power);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 240 power operation with negative right-hand operand), and the dividend was
244 or of the signs of the operands for divide, or is 1 for an odd power of
245 -0, for power.
4937 def power(self, a, b, modulo=None): member in class:Context
    [all...]
  /external/opencv/cvaux/src/
cvvecfacetracking.cpp 67 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &step, float& power, int iHistMin /*= HIST_MIN*/);
275 float step, power; local
276 ThresholdingParam(img, nLayers / 2, iMinLevel, iMaxLevel, step, power, 4);
613 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &step, float& power, int iHistMin /*= HIST_MIN*/)
647 // power
654 power = float(black) / float(2 * white);
    [all...]
  /external/python/cpython2/Lib/
decimal.py 239 power operation with negative right-hand operand), and the dividend was
243 or of the signs of the operands for divide, or is 1 for an odd power of
244 -0, for power.
4965 def power(self, a, b, modulo=None): member in class:Context
    [all...]
  /external/python/cpython3/Lib/
_pydecimal.py 267 power operation with negative right-hand operand), and the dividend was
271 or of the signs of the operands for divide, or is 1 for an odd power of
272 -0, for power.
5178 def power(self, a, b, modulo=None): member in class:Context
    [all...]
  /external/swiftshader/src/Shader/
ShaderCore.cpp 180 Float4 power(RValue<Float4> x, RValue<Float4> y, bool pp) function in namespace:sw
1075 dst.z = power(src.y, pow);
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
algebraic_simplifier_test.cc 336 HloInstruction* power = builder.AddInstruction( local
339 HloInstruction::CreateBinary(r0f32, HloOpcode::kDivide, param0, power));
344 op::Divide(param0, op::Power(param1, param2)));
351 op::Multiply(param0, op::Power(param1, op::Negate(param2))));
366 HloInstruction* power = builder.AddInstruction( local
369 HloInstruction::CreateBinary(r1f32, HloOpcode::kDivide, param0, power));
374 op::Divide(param0, op::Power(param1, param2)));
381 op::Multiply(param0, op::Power(param1, op::Negate(param2))));
432 op::Power(base, op::Multiply(exp1, exp2)));
671 op::Power(op::Exp(param0), param1))
    [all...]
  /hardware/libhardware/include/hardware/
sensors.h 450 /* rough estimate of this sensor's power consumption in mA */
451 float power; member in struct:sensor_t
  /prebuilts/gdb/darwin-x86/lib/python2.7/
decimal.py 240 power operation with negative right-hand operand), and the dividend was
244 or of the signs of the operands for divide, or is 1 for an odd power of
245 -0, for power.
4965 def power(self, a, b, modulo=None): member in class:Context
    [all...]

Completed in 805 milliseconds

1 2 3 45 6 7 8 910