HomeSort by relevance Sort by last modified time
    Searched refs:balance (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
SoundMediaHeaderBox.java 27 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/
stereo.c 44 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=floor(.5+fabs(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/
BaseMediaInfoAtom.java 16 short balance; field in class:BaseMediaInfoAtom
35 byteBuffer.putShort(balance);
46 balance = content.getShort();
84 return balance;
87 public void setBalance(short balance) {
88 this.balance = balance;
106 ", balance=" + balance +
  /external/valgrind/main/coregrind/
m_wordfm.c 69 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. */
116 /* Balance maintainance after especially nasty swings. */
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
    [all...]
m_oset.c 101 Char balance; member in struct:_OSetNode
203 // Swing to the left. Warning: no balance maintainance.
213 // Swing to the right. Warning: no balance maintainance.
223 // Balance maintainance after especially nasty swings.
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
    [all...]
  /external/guava/guava/src/com/google/common/collect/
BstBalancePolicy.java 36 N balance(BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right); method in interface:BstBalancePolicy
BstCountBasedBalancePolicies.java 44 * Returns a balance policy that does no balancing or the bare minimum (for {@code combine}).
51 public N balance(
75 * Returns a balance policy that expects the sizes of each side to be at most one node (added or
76 * removed) away from being balanced. {@code balance} takes {@code O(1)} time, and {@code
84 public N balance(
155 * Returns a balance policy that makes no assumptions on the relative balance of the two sides
156 * and performs a full rebalancing as necessary. Both {@code balance} and {@code combine} take
166 public N balance(
176 N resultLeft = balance(nodeFactory, source, left, right.childOrNull(LEFT))
    [all...]
BstOperations.java 65 * the tree will be rebalanced using the balance policy of the mutation rule.
145 changedRoot = rebalancePolicy.balance(
206 return balancePolicy.balance(nodeFactory, root,
224 return balancePolicy.balance(nodeFactory, root, root.childOrNull(LEFT),
BstMutationResult.java 149 balancePolicy.balance(nodeFactory, liftOriginalRoot, resultLeft, resultRight);
  /external/speex/include/speex/
speex_stereo.h 51 float balance; /**< Left/right balance info */ member in struct:SpeexStereoState
  /external/valgrind/main/cachegrind/
cg_merge.c 970 Char balance; member in struct:_AvlNode
996 /* Swing to the left. Warning: no balance maintainance. */
1006 /* Swing to the right. Warning: no balance maintainance. */
1016 /* Balance maintainance after especially nasty swings. */
1019 switch (root->balance) {
1021 root->left->balance = 0;
1022 root->right->balance = 1;
1025 root->left->balance = -1;
1026 root->right->balance = 0;
1029 root->left->balance = 0
    [all...]
  /external/chromium_org/third_party/bintrees/bintrees/
avltree.py 42 __slots__ = ['left', 'right', 'balance', 'key', 'value']
49 self.balance = 0
71 return node.balance if node is not None else -1
82 root.balance = max(rlh, rrh) + 1
83 save.balance = max(slh, root.balance) + 1
204 # Update balance factors
209 topnode.balance = max(left_height, right_height) + 1
284 # Update balance factors
285 topnode.balance = b_max +
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractBstBalancePolicyTest.java 38 assertInOrderTraversalIs(getBalancePolicy().balance(nodeFactory, a, null, null), "a");
42 return getBalancePolicy().balance(nodeFactory, new SimpleNode(c, null, null), left, right);
  /external/chromium_org/third_party/opus/src/celt/
rate.h 99 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);
rate.c 262 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,
bands.h 95 * @param balance Number of unallocated bits
104 opus_int32 total_bits, opus_int32 balance, ec_ctx *ec, int M, int codedBands, opus_uint32 *seed);
  /external/libopus/celt/
rate.h 99 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);
rate.c 262 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,
bands.h 95 * @param balance Number of unallocated bits
104 opus_int32 total_bits, opus_int32 balance, ec_ctx *ec, int M, int codedBands, opus_uint32 *seed);
  /external/chromium_org/v8/src/
dateparser.h 111 int balance = 0; local
113 if (ch_ == ')') --balance;
114 else if (ch_ == '(') ++balance;
116 } while (balance > 0 && ch_);
  /external/aac/libSBRenc/src/
bit_sbr.h 205 INT balance; member in struct:SBR_ENV_DATA
env_est.cpp 294 \brief Quantisation of the panorama value (balance)
    [all...]
  /external/eigen/unsupported/Eigen/src/Polynomials/
Companion.h 108 * 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/qemu/distrib/sdl-1.2.15/src/audio/ums/
SDL_umsaudio.c 70 static UMSAudioDevice_ReturnCode UADSetBalance(_THIS, long balance );
478 static UMSAudioDevice_ReturnCode UADSetBalance(_THIS, long balance )
481 * Set the balance.
486 balance );
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategy.java 52 * by considering the tag and bracket balance on the current line and using it
103 Pair<Integer,Integer> balance = getBalance(doc, textStart, offset); local
104 int tagBalance = balance.getFirst();
105 int bracketBalance = balance.getSecond();
112 // We only care if tag or bracket balance is greater than 0;
390 * Returns a pair of (tag-balance,bracket-balance) for the range textStart to offset.
395 * @return the balance of tags and brackets
399 // Balance of open and closing tags
402 // Balance of open and closing bracket
    [all...]

Completed in 592 milliseconds

1 2 3 4 5 6 7 8