Searched refs:balance (Results 1 - 25 of 77) sorted by relevance

1234

/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DSoundMediaHeaderBox.java27 private float balance; field in class:SoundMediaHeaderBox
34 return balance;
44 balance = IsoTypeReader.readFixedPoint88(content);
51 IsoTypeWriter.writeFixedPont88(byteBuffer, balance);
56 return "SoundMediaHeaderBox[balance=" + getBalance() + "]";
/external/speex/libspeex/
H A Dstereo.c44 spx_word32_t balance; /**< Left/right balance info */ member in struct:RealSpeexStereoState
86 stereo->balance = 65536;
93 stereo->balance = 1.0f;
112 float balance, e_ratio; local
120 balance=(e_left+1)/(e_right+1);
127 balance=4*log(balance);
130 if (balance>0)
134 balance
150 spx_word32_t balance, e_ratio; local
224 spx_word32_t balance; local
251 spx_word32_t balance; local
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/apple/
H A DBaseMediaInfoAtom.java16 short balance; field in class:BaseMediaInfoAtom
35 byteBuffer.putShort(balance);
46 balance = content.getShort();
84 return balance;
87 public void setBalance(short balance) { argument
88 this.balance = balance;
106 ", balance=" + balance +
/external/valgrind/coregrind/
H A Dm_wordfm.c69 Char balance; /* do not make this unsigned */ member in struct:_AvlNode
96 /* Swing to the left. Warning: no balance maintainance. */
106 /* Swing to the right. Warning: no balance maintainance. */
119 switch (root->balance) {
121 root->child[0]->balance = 0;
122 root->child[1]->balance = 1;
125 root->child[0]->balance = -1;
126 root->child[1]->balance = 0;
129 root->child[0]->balance = 0;
130 root->child[1]->balance
[all...]
H A Dm_oset.c101 Char balance; member in struct:_OSetNode
203 // Swing to the left. Warning: no balance maintainance.
213 // Swing to the right. Warning: no balance maintainance.
226 switch (root->balance) {
228 root->left->balance = 0;
229 root->right->balance = 1;
232 root->left->balance =-1;
233 root->right->balance = 0;
236 root->left->balance = 0;
237 root->right->balance
[all...]
/external/speex/include/speex/
H A Dspeex_stereo.h51 float balance; /**< Left/right balance info */ member in struct:SpeexStereoState
/external/valgrind/cachegrind/
H A Dcg_merge.c983 Char balance; member in struct:_AvlNode
1009 /* Swing to the left. Warning: no balance maintainance. */
1019 /* Swing to the right. Warning: no balance maintainance. */
1032 switch (root->balance) {
1034 root->left->balance = 0;
1035 root->right->balance = 1;
1038 root->left->balance = -1;
1039 root->right->balance = 0;
1042 root->left->balance = 0;
1043 root->right->balance
[all...]
/external/libopus/celt/
H A Drate.h99 opus_int32 total, opus_int32 *balance, int *pulses, int *ebits, int *fine_priority, int C, int LM, ec_ctx *ec, int encode, int prev, int signalBandwidth);
H A Drate.c262 opus_int32 balance; local
429 balance = 0;
440 bit = (opus_int32)bits[j]+balance;
502 fine_priority[j] = extra_bits >= excess-balance;
505 balance = excess;
512 *_balance = balance;
527 opus_int32 total, opus_int32 *balance, int *pulses, int *ebits, int *fine_priority, int C, int LM, ec_ctx *ec, int encode, int prev, int signalBandwidth)
633 total, balance, skip_rsv, intensity, intensity_rsv, dual_stereo, dual_stereo_rsv,
526 compute_allocation(const CELTMode *m, int start, int end, const int *offsets, const int *cap, int alloc_trim, int *intensity, int *dual_stereo, opus_int32 total, opus_int32 *balance, int *pulses, int *ebits, int *fine_priority, int C, int LM, ec_ctx *ec, int encode, int prev, int signalBandwidth) argument
H A Dbands.h95 * @param balance Number of unallocated bits
104 opus_int32 total_bits, opus_int32 balance, ec_ctx *ec, int M, int codedBands, opus_uint32 *seed);
H A Dcelt_decoder.c688 opus_int32 balance; local
889 alloc_trim, &intensity, &dual_stereo, bits, &balance, pulses,
900 len*(8<<BITRES)-anti_collapse_rsv, balance, dec, LM, codedBands, &st->rng);
H A Dbands.c1358 opus_int32 total_bits, opus_int32 balance, ec_ctx *ec, int LM, int codedBands, opus_uint32 *seed)
1426 balance -= tell;
1431 curr_balance = balance / IMIN(3, codedBands-i);
1509 balance += pulses[i] + tell;
1355 quant_all_bands(int encode, const CELTMode *m, int start, int end, celt_norm *X_, celt_norm *Y_, unsigned char *collapse_masks, const celt_ener *bandE, int *pulses, int shortBlocks, int spread, int dual_stereo, int intensity, int *tf_res, opus_int32 total_bits, opus_int32 balance, ec_ctx *ec, int LM, int codedBands, opus_uint32 *seed) argument
/external/opencv3/modules/ts/misc/
H A Dchart.py51 balance = 0
58 balance += 1
62 balance -= 1
64 assert(balance >= 0)
65 if balance == 0:
/external/v8/src/
H A Ddateparser-inl.h224 int balance = 0; local
226 if (ch_ == ')') --balance;
227 else if (ch_ == '(') ++balance;
229 } while (balance > 0 && ch_);
/external/opencv3/modules/python/src2/
H A Dhdr_parser.py53 balance = 1
60 balance += 1
62 balance -= 1
63 if balance == 0:
491 balance = 1
498 while balance > 0:
511 balance += 1
513 balance -= 1
515 if (t == "," and balance == 1 and angle_balance == 0) or balance
[all...]
/external/eigen/unsupported/Eigen/src/Polynomials/
H A DCompanion.h108 * the column and the row in order to balance them.
117 * the column and the row in order to balance them.
131 void balance();
211 void companion<_Scalar,_Deg>::balance() function in class:Eigen::internal::companion
H A DPolynomialSolver.h349 companion.balance();
/external/aac/libSBRenc/src/
H A Denv_est.cpp402 \brief Quantisation of the panorama value (balance)
1482 h_envChan[0]->encEnvData.balance = 0;
1493 h_envChan[0]->encEnvData.balance = 0;
1494 h_envChan[1]->encEnvData.balance = 0;
1512 h_envChan[0]->encEnvData.balance = 0;
1513 h_envChan[1]->encEnvData.balance = 1;
1616 h_envChan[0]->encEnvData.balance = 0;
1617 h_envChan[1]->encEnvData.balance = 0;
1722 h_envChan[0]->encEnvData.balance = 0;
1723 h_envChan[1]->encEnvData.balance
[all...]
H A Dbit_sbr.h205 INT balance; member in struct:SBR_ENV_DATA
H A Dbit_sbr.cpp797 if (coupling && sbrEnvData->balance) {
809 if (sbrEnvData->balance) {
810 /* coupling && balance */
817 /* coupling && !balance */
838 if (sbrEnvData->balance) {
839 /* coupling && balance */
846 /* coupling && !balance */
885 if (coupling && sbrEnvData->balance) {
894 if (coupling && sbrEnvData->balance) {
900 if (sbrEnvData->balance) {
[all...]
/external/opencv3/modules/calib3d/test/
H A Dtest_fisheye.cpp119 double balance = 1.0; local
120 cv::fisheye::estimateNewCameraMatrixForUndistortRectify(K, D, distorted.size(), cv::noArray(), newK, balance);
130 double balance = 0.0; local
131 cv::fisheye::estimateNewCameraMatrixForUndistortRectify(K, D, distorted.size(), cv::noArray(), newK, balance);
404 double balance = 0.0, fov_scale = 1.1; local
407 cv::CALIB_ZERO_DISPARITY, requested_size, balance, fov_scale);
/external/opencv3/modules/calib3d/include/opencv2/
H A Dcalib3d.hpp1750 @param balance Sets the new focal length in range between the min focal length and the max focal
1756 OutputArray P, double balance = 0.0, const Size& new_size = Size(), double fov_scale = 1.0);
1819 @param balance Sets the new focal length in range between the min focal length and the max focal
1825 double balance = 0.0, double fov_scale = 1.0);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DRopeByteString.java197 result = new Balancer().balance(left, right);
608 private ByteString balance(ByteString left, ByteString right) { method in class:RopeByteString.Balancer
642 * Push a string on the balance stack (BAP95). BAP95 uses an array and
653 * @param byteString string to place on the balance stack
/external/opencv3/modules/java/src/
H A Dcalib3d+Calib3d.java176 // C++: void estimateNewCameraMatrixForUndistortRectify(Mat K, Mat D, Size image_size, Mat R, Mat& P, double balance = 0.0, Size new_size = Size(), double fov_scale = 1.0)
179 //javadoc: estimateNewCameraMatrixForUndistortRectify(K, D, image_size, R, P, balance, new_size, fov_scale)
180 public static void estimateNewCameraMatrixForUndistortRectify(Mat K, Mat D, Size image_size, Mat R, Mat P, double balance, Size new_size, double fov_scale) argument
183 estimateNewCameraMatrixForUndistortRectify_0(K.nativeObj, D.nativeObj, image_size.width, image_size.height, R.nativeObj, P.nativeObj, balance, new_size.width, new_size.height, fov_scale);
249 // C++: void stereoRectify(Mat K1, Mat D1, Mat K2, Mat D2, Size imageSize, Mat R, Mat tvec, Mat& R1, Mat& R2, Mat& P1, Mat& P2, Mat& Q, int flags, Size newImageSize = Size(), double balance = 0.0, double fov_scale = 1.0)
252 //javadoc: stereoRectify(K1, D1, K2, D2, imageSize, R, tvec, R1, R2, P1, P2, Q, flags, newImageSize, balance, fov_scale)
253 public static void stereoRectify(Mat K1, Mat D1, Mat K2, Mat D2, Size imageSize, Mat R, Mat tvec, Mat R1, Mat R2, Mat P1, Mat P2, Mat Q, int flags, Size newImageSize, double balance, double fov_scale) argument
256 stereoRectify_0(K1.nativeObj, D1.nativeObj, K2.nativeObj, D2.nativeObj, imageSize.width, imageSize.height, R.nativeObj, tvec.nativeObj, R1.nativeObj, R2.nativeObj, P1.nativeObj, P2.nativeObj, Q.nativeObj, flags, newImageSize.width, newImageSize.height, balance, fov_scale);
1159 // C++: void estimateNewCameraMatrixForUndistortRectify(Mat K, Mat D, Size image_size, Mat R, Mat& P, double balance = 0.0, Size new_size = Size(), double fov_scale = 1.0)
1160 private static native void estimateNewCameraMatrixForUndistortRectify_0(long K_nativeObj, long D_nativeObj, double image_size_width, double image_size_height, long R_nativeObj, long P_nativeObj, double balance, doubl argument
1169 stereoRectify_0(long K1_nativeObj, long D1_nativeObj, long K2_nativeObj, long D2_nativeObj, double imageSize_width, double imageSize_height, long R_nativeObj, long tvec_nativeObj, long R1_nativeObj, long R2_nativeObj, long P1_nativeObj, long P2_nativeObj, long Q_nativeObj, int flags, double newImageSize_width, double newImageSize_height, double balance, double fov_scale) argument
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
H A Dmturk352 help = 'display your prepaid balance')

Completed in 2050 milliseconds

1234