Searched defs:balance (Results 1 - 23 of 23) sorted by relevance

/external/speex/include/speex/
H A Dspeex_stereo.h51 float balance; /**< Left/right balance info */ member in struct:SpeexStereoState
/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/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
/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/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/libvpx/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_impl.h153 ** need these fields. The "balance" function does not explicitly use
155 ** structure pointer to "balance" if it has instantiation-specific
157 ** "balance".
198 /* Put the private balance function in the same compilation module as
204 L_SC AVL_HANDLE L_(balance)(L_BALANCE_PARAM_DECL_PREFIX AVL_HANDLE bal_h) { function
412 unbal = L_(balance)(L_BALANCE_PARAM_CALL_PREFIX unbal);
509 /* Prototype of balance function (called by remove) in case not in
512 L_SC AVL_HANDLE L_(balance)(L_BALANCE_PARAM_DECL_PREFIX AVL_HANDLE bal_h);
684 h = L_(balance)(L_BALANCE_PARAM_CALL_PREFIX h);
/external/aac/libSBRenc/src/
H A Dbit_sbr.h205 INT balance; member in struct:SBR_ENV_DATA
/external/libopus/celt/
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 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
H A Dcelt_encoder.c1288 opus_int32 balance; local
1954 alloc_trim, &st->intensity, &dual_stereo, bits, &balance, pulses,
1967 nbCompressedBytes*(8<<BITRES)-anti_collapse_rsv, balance, enc, LM, codedBands, &st->rng);
/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/v8/src/
H A Ddateparser.h111 int balance = 0; local
113 if (ch_ == ')') --balance;
114 else if (ch_ == '(') ++balance;
116 } while (balance > 0 && ch_);
/external/valgrind/coregrind/
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...]
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...]
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/sqlite/dist/orig/
H A Dsqlite3.c60462 static int balance(BtCursor *pCur){ function
[all...]
/external/sqlite/dist/
H A Dsqlite3.c60480 static int balance(BtCursor *pCur){ function
[all...]

Completed in 1245 milliseconds