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

1 2 3 4 5 6 7 8 91011>>

  /external/speex/include/speex/
speex_stereo.h 51 float balance; /**< Left/right balance info */ member in struct:SpeexStereoState
  /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() + "]";
  /prebuilts/go/darwin-x86/src/runtime/
mgcwork.go 264 // balance moves some work that's cached in this gcWork back on the
267 func (w *gcWork) balance() { func
  /prebuilts/go/linux-x86/src/runtime/
mgcwork.go 264 // balance moves some work that's cached in this gcWork back on the
267 func (w *gcWork) balance() { func
  /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/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/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/v8/src/
dateparser-inl.h 233 int balance = 0; local
235 if (ch_ == ')') --balance;
236 else if (ch_ == '(') ++balance;
238 } while (balance > 0 && ch_);
  /external/ImageMagick/MagickCore/
splay-tree.c 98 balance;
293 splay_tree->balance=MagickFalse;
304 splay_tree->balance=MagickFalse;
95 balance; member in struct:_SplayTreeInfo
    [all...]
  /external/libopus/celt/
rate.c 262 opus_int32 balance; local
429 balance = 0;
440 bit = (opus_int32)bits[j]+balance;
503 fine_priority[j] = extra_bits >= excess-balance;
506 balance = excess;
513 *_balance = balance;
528 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)
634 total, balance, skip_rsv, intensity, intensity_rsv, dual_stereo, dual_stereo_rsv,
celt_decoder.c 751 opus_int32 balance; local
960 alloc_trim, &intensity, &dual_stereo, bits, &balance, pulses,
982 len*(8<<BITRES)-anti_collapse_rsv, balance, dec, LM, codedBands, &st->rng, st->arch);
    [all...]
  /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...]
  /external/valgrind/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/aac/libSBRenc/src/
bit_sbr.h 205 INT balance; member in struct:SBR_ENV_DATA
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
RopeByteString.java 207 return new Balancer().balance(left, right);
570 private ByteString balance(ByteString left, ByteString right) { method in class:RopeByteString.Balancer
604 * Push a string on the balance stack (BAP95). BAP95 uses an array and
615 * @param byteString string to place on the balance stack
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp 1921 LVM_INT16 balance; local
    [all...]
  /hardware/intel/img/psb_video/src/
vsp_VPP.c 1065 VAProcFilterParameterBufferColorBalance *balance; local
    [all...]
  /development/ndk/platforms/android-9/include/linux/
videodev.h 112 __u16 balance; member in struct:video_audio
  /external/valgrind/cachegrind/
cg_merge.c 983 Char balance; member in struct:_AvlNode
1009 /* Swing to the left. Warning: no balance maintainance. */
1019 /* Swing to the right. Warning: no balance maintainance. */
1029 /* Balance maintainance after especially nasty swings. */
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
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
videodev.h 131 __u16 balance; /* Stereo balance */ member in struct:video_audio
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/linux/
videodev.h 112 __u16 balance; member in struct:video_audio
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/usr/include/linux/
videodev.h 112 __u16 balance; member in struct:video_audio
  /prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/linux/
videodev.h 112 __u16 balance; member in struct:video_audio
  /prebuilts/ndk/r10/platforms/android-13/arch-arm/usr/include/linux/
videodev.h 112 __u16 balance; member in struct:video_audio

Completed in 921 milliseconds

1 2 3 4 5 6 7 8 91011>>