HomeSort by relevance Sort by last modified time
    Searched full:low (Results 326 - 350 of 2034) sorted by null

<<11121314151617181920>>

  /external/qemu/
translate-all.c 191 env->icount_decr.u16.low += tb->icount;
215 env->icount_decr.u16.low -= gen_opc_icount[j];
  /external/speex/libspeex/
sb_celp.h 46 void *st_low; /**< State of the low-band (narrowband) encoder */
101 void *st_low; /**< State of the low-band (narrowband) encoder */
  /frameworks/base/awt/java/awt/
GraphicsDevice.java 145 * Returns true if this GraphicsDevice supports low-level display changes.
147 * @return true, if this GraphicsDevice supports low-level display changes;
  /frameworks/base/docs/html/guide/basics/
fixme-gs-core-packages.jd 50 <dd>contains various low-level utility classes, such
61 <dd>contains low-level APIs for working with
  /frameworks/base/docs/html/guide/topics/manifest/
supports-screens-element.jd 29 framework will scale down assets by a factor of 0.75 (low dpi screens)
53 screen, but WQVGA low density and WVGA high density are also
  /frameworks/base/include/binder/
IBinder.h 38 * Base class and low-level protocol for a remotable object.
41 * (method calls, property get and set) is down through a low-level
  /frameworks/base/media/java/android/media/
CamcorderProfile.java 45 * Currently, we define two quality levels: high quality and low quality.
48 * resolution and higher audio sampling rate, etc, than those with low quality
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
cnst_vad.h 116 #define CVAD_THRESH_ADAPT_LOW (Word16)(0.5 * MAX_16) /* threshold for adapt stopping low */
124 #define CVAD_LOWPOW_RESET (Word16) (0.40 * MAX_16) /* init in low power segment */
  /frameworks/base/packages/TtsService/src/android/tts/
SynthProxy.java 36 // Such a huge filter gain is justified by how much energy in the low frequencies is "wasted" at
37 // the output of the synthesis. The low shelving filter removes it, leaving room for
  /hardware/broadcom/wlan/bcm4329/src/include/
spid.h 66 #define CLOCK_POLARITY 0x8 /* 0/1 Idle state clock polarity is low/high */
68 #define INTR_POLARITY 0x20 /* 1/0 Interrupt active polarity is high/low */
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
QuotedPrintableInputStream.java 183 byte low = asciiCharToNumericValue(b);
185 byteq.enqueue((byte)((msd << 4) | low));
  /packages/inputmethods/PinyinIME/jni/include/
dictdef.h 124 uint16 son_1st_off_l; // Low bits of the son_1st_off
125 uint16 homo_idx_buf_off_l; // Low bits of the homo_idx_buf_off_1
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/currBss/
currBss.h 66 CURR_BSS_LOW_RSSI_SCAN_COND,/**< Set by AP Connection when Roaming Manager configures low RSSI threshold for BG scan */
68 CURR_BSS_QUALITY_THRESHOLD, /**< Set by AP Connection when Roaming Manager configures event of type 'Low RSSI' */
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
Encodings.java 425 * Return true if the character is the low member of a surrogate pair.
435 * Return the unicode code point represented by the high/low surrogate pair.
438 * @param highSurrogate the high char of the high/low pair
439 * @param lowSurrogate the low char of the high/low pair
  /external/bison/src/
lalr.c 147 goto_number low; local
151 low = goto_map[sym - ntokens];
156 assert (low <= high);
157 middle = (low + high) / 2;
162 low = middle + 1;
  /external/kernel-headers/original/linux/
serial_core.h 281 * The low level driver must not to touch any elements contained
306 * been closed. Either the low level driver or the core can modify
316 * are specific to this structure. They may be queried by low level drivers.
347 * these are private; the low level driver should not
408 * The following are helper functions for the low level drivers.
  /external/libffi/src/mips/
o32.S 202 -6 - return value low (v0)
203 -7 - f14 (le high, be low)
204 -8 - f14 (le low, be high)
205 -9 - f12 (le high, be low)
206 -10 - f12 (le low, be high)
  /dalvik/libcore/luni/src/main/java/java/lang/
Long.java 493 int low = (int) (n % 1000000000); // Extract low-order 9 digits local
494 int cursor = intIntoCharArray(buf, bufLen, low);
496 // Zero-pad Low order part to 9 digits
501 * The remaining digits are (n - low) / 1,000,000,000. This
505 n = ((n - low) >>> 9) * 0x8E47CE423A2E9C6DL;
510 * low-order digit, put it in buf, and then call intIntoCharArray
777 int low = (int) v; local
778 return low !=0 ? Integer.numberOfTrailingZeros(low)
    [all...]
  /dalvik/vm/compiler/codegen/arm/
RallocUtil.c 548 dvmCompilerResetDef(cUnit, rl.highReg); // Only track low of pair
746 * clobber both low and high.
932 int low, int high, bool isSrc)
936 /* Copy loc record for low word and patch in data from high word */
938 lowLoc = dvmCompilerGetSrc(cUnit, mir, low);
941 lowLoc = dvmCompilerGetDest(cUnit, mir, low);
956 int low, int high)
958 return getLocWide(cUnit, mir, low, high, false);
962 int low, int high)
964 return getLocWide(cUnit, mir, low, high, true)
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 856 final int low = (code [++ scan] << 24) | ((0xFF & code [++ scan]) << 16) | ((0xFF & code [++ scan]) << 8) | (0xFF & code [++ scan]); local
1756 final int low = m_low; local
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 696 void add(int32_t order, int32_t low, int32_t high);
723 int32_t order, low, high; local
744 low = ucol_getOffset(elems);
753 add(order, low, high);
765 void OrderList::add(int32_t order, int32_t low, int32_t high)
778 list[listSize].lowOffset = low;
990 int32_t order, low, high; local
993 low = iter->getOffset();
997 forwardList.add(order, low, high);
1008 low = iter->getOffset()
1114 int32_t low, high; local
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/Application/Roaming/
roamingMngr.c 42 * The Roaming triggers are: Low RSSI, PER, consecutive No ACK on TX,
166 /* TS to filter Too many low Quality roaming triggers */
    [all...]
  /external/opencore/codecs_v2/utilities/colorconvert/src/
cczoomrotation16.cpp 354 tmp0 = (Y & 0xFF); //Low endian left pixel
392 tmp0 = (Y & 0xFF); //Low endian left pixel
509 tmp0 = (Y & 0xFF); //Low endian left pixel
547 tmp0 = (Y & 0xFF); //Low endian left pixel
696 tmp0 = (Y & 0xFF); //Low endian left pixel
733 tmp0 = (Y >> 8); //Low endian right pixel
832 tmp0 = (Y & 0xFF); //Low endian left pixel
869 tmp0 = (Y >> 8) & 0xFF; //Low endian right pixel
1088 tmp0 = (Y & 0xFF); //Low endian left pixel
    [all...]
  /external/webkit/WebKit/mac/History/
WebHistory.mm 212 unsigned low = 0;
214 while (low < high) {
215 unsigned mid = low + (high - low) / 2;
217 low = mid + 1;
222 // low is now the index of the first entry that is older than entryDate
223 [entriesForDate insertObject:entry atIndex:low];
  /external/webkit/WebKit/win/
WebHistory.cpp 936 unsigned low = 0;
938 while (low < high) {
939 unsigned mid = low + (high - low) / 2;
946 low = mid + 1;
951 // low is now the index of the first entry that is older than entryDate
952 CFArrayInsertValueAtIndex(entriesForDate, low, entry);
    [all...]

Completed in 160 milliseconds

<<11121314151617181920>>