Searched refs:level (Results 1 - 25 of 280) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode_inline.h25 Int idx, run, level, j; local
48 level = dataBlock[j];
51 if (level < 0)
53 RLB->level[idx] = -level;
61 RLB->level[idx] = level;
85 level = dataBlock[j];
88 if (level < 0)
90 RLB->level[id
116 Int idx, run, level, j; local
139 ldrsh level, [dataBlock, run] /* load data */ local
181 ldrsh level, [dataBlock, run] /* load data */ local
230 Int idx, run, level = 0, j; local
[all...]
H A Dvlc_encode.cpp142 Int PutCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream);
143 Int PutCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream);
144 Int PutCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream);
145 Int PutCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream);
154 Int PutCoeff_Inter_RVLC(Int run, Int level, BitstreamEncVideo *bitstream);
155 Int PutCoeff_Inter_RVLC_Last(Int run, Int level, BitstreamEncVideo *bitstream);
156 Int PutCoeff_Intra_RVLC(Int run, Int level, BitstreamEncVideo *bitstream);
157 Int PutCoeff_Intra_RVLC_Last(Int run, Int level, BitstreamEncVideo *bitstream);
159 Int PutRunCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream);
160 Int PutRunCoeff_Inter_Last(Int run, Int level, BitstreamEncVide
291 PutCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream) argument
311 PutCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
333 PutCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream) argument
365 PutCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
393 PutCoeff_Inter_RVLC(Int run, Int level, BitstreamEncVideo *bitstream) argument
449 PutCoeff_Inter_RVLC_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
483 PutCoeff_Intra_RVLC(Int run, Int level, BitstreamEncVideo *bitstream) argument
545 PutCoeff_Intra_RVLC_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
580 PutRunCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream) argument
609 PutRunCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
638 PutRunCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream) argument
688 PutRunCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
729 PutLevelCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream) argument
756 PutLevelCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
783 PutLevelCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream) argument
829 PutLevelCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
1436 Int level; local
1509 Int level; local
1578 Int level; local
1792 Int level; local
[all...]
H A Dvlc_encode.h24 Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
25 Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
33 Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
34 Int PutCoeff_Intra_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
35 Int PutRunCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
36 Int PutRunCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
37 Int PutLevelCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
38 Int PutLevelCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
/frameworks/base/core/java/android/content/
H A DComponentCallbacks2.java69 * fallback that's roughly equivalent to the {@link ComponentCallbacks2#TRIM_MEMORY_COMPLETE} level.
149 * should never compare to exact values of the level, since new intermediate
151 * is greater or equal to a level you are interested in.
153 * <p>To retrieve the processes current trim level at any point, you can
157 * @param level The context of the trim, giving a hint of the amount of
164 void onTrimMemory(int level); argument
/frameworks/base/telephony/java/android/telephony/
H A DCellSignalStrengthGsm.java104 * Get signal level as an int from 0..4
108 int level;
115 if (asu <= 2 || asu == 99) level = SIGNAL_STRENGTH_NONE_OR_UNKNOWN;
116 else if (asu >= GSM_SIGNAL_STRENGTH_GREAT) level = SIGNAL_STRENGTH_GREAT;
117 else if (asu >= GSM_SIGNAL_STRENGTH_GOOD) level = SIGNAL_STRENGTH_GOOD;
118 else if (asu >= GSM_SIGNAL_STRENGTH_MODERATE) level = SIGNAL_STRENGTH_MODERATE;
119 else level = SIGNAL_STRENGTH_POOR;
120 if (DBG) log("getLevel=" + level);
121 return level;
131 int level
[all...]
H A DCellSignalStrengthWcdma.java104 * Get signal level as an int from 0..4
108 int level;
115 if (asu <= 2 || asu == 99) level = SIGNAL_STRENGTH_NONE_OR_UNKNOWN;
116 else if (asu >= WCDMA_SIGNAL_STRENGTH_GREAT) level = SIGNAL_STRENGTH_GREAT;
117 else if (asu >= WCDMA_SIGNAL_STRENGTH_GOOD) level = SIGNAL_STRENGTH_GOOD;
118 else if (asu >= WCDMA_SIGNAL_STRENGTH_MODERATE) level = SIGNAL_STRENGTH_MODERATE;
119 else level = SIGNAL_STRENGTH_POOR;
120 if (DBG) log("getLevel=" + level);
121 return level;
131 int level
[all...]
H A DCellSignalStrengthCdma.java116 * Get signal level as an int from 0..4
120 int level;
126 level = getCdmaLevel();
129 level = getEvdoLevel();
131 /* We know both, use the lowest level */
132 level = cdmaLevel < evdoLevel ? cdmaLevel : evdoLevel;
134 if (DBG) log("getLevel=" + level);
135 return level;
139 * Get the signal level as an asu value between 0..97, 99 is unknown
163 int level
[all...]
H A DSignalStrength.java472 * Get signal level as an int from 0..4
477 int level;
480 level = getLteLevel();
481 if (level == SIGNAL_STRENGTH_NONE_OR_UNKNOWN) {
482 level = getGsmLevel();
489 level = cdmaLevel;
492 level = evdoLevel;
494 /* We know both, use the lowest level */
495 level = cdmaLevel < evdoLevel ? cdmaLevel : evdoLevel;
498 if (DBG) log("getLevel=" + level);
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLUtils.java101 * @param level
106 public static void texImage2D(int target, int level, int internalformat, argument
114 if (native_texImage2D(target, level, internalformat, bitmap, -1, border)!=0) {
126 * @param level
132 public static void texImage2D(int target, int level, int internalformat, argument
140 if (native_texImage2D(target, level, internalformat, bitmap, type, border)!=0) {
150 * @param level
154 public static void texImage2D(int target, int level, Bitmap bitmap, argument
162 if (native_texImage2D(target, level, -1, bitmap, -1, border)!=0) {
184 * @param level
189 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap) argument
214 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
276 setTracingLevel(int level) argument
282 native_texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) argument
284 native_texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
[all...]
/frameworks/base/libs/hwui/
H A DDisplayListLogBuffer.cpp30 * generally is just reported as a stack trace at the Java level) or crashed, but
43 * opcode and the nesting level). If the type of information logged changes (for example,
81 fprintf(file, "%*s%s\n", 2 * tmpBufferPtr->level, "", tmpBufferPtr->label);
91 * Store the given level and label in the buffer and increment/wrap the mEnd
94 void DisplayListLogBuffer::writeCommand(int level, const char* label) { argument
95 mEnd->level = level;
H A DDisplayListLogBuffer.h34 void writeCommand(int level, const char* label);
42 int level; member in struct:android::uirenderer::DisplayListLogBuffer::OpLog
/frameworks/base/core/java/android/text/
H A DAndroidBidi.java72 int level = levels[i];
73 if (level != curLevel) {
74 curLevel = level;
120 int level = levels[i];
121 if (level != curLevel) {
122 curLevel = level;
123 if (level > maxLevel) {
124 maxLevel = level;
125 } else if (level < minLevel) {
126 minLevel = level;
[all...]
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java40 * <th>logger level</th>
41 * <th>Android level</th>
126 int level = getAndroidLevel(record.getLevel());
128 if (!Log.isLoggable(tag, level)) {
134 Log.println(level, tag, message);
140 public void publish(Logger source, String tag, Level level, String message) { argument
142 int priority = getAndroidLevel(level);
155 * Converts a {@link java.util.logging.Logger} logging level into an Android one.
157 * @param level The {@link java.util.logging.Logger} logging level
161 getAndroidLevel(Level level) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPermissionInfo.java44 * System-level value for {@link #protectionLevel}, corresponding
51 * System-level value for {@link #protectionLevel}, corresponding
89 * The level of access this permission is protecting, as per
133 public static int fixProtectionLevel(int level) { argument
134 if (level == PROTECTION_SIGNATURE_OR_SYSTEM) {
135 level = PROTECTION_SIGNATURE | PROTECTION_FLAG_SYSTEM;
137 return level;
141 public static String protectionToString(int level) { argument
143 switch (level&PROTECTION_MASK_BASE) {
157 if ((level
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DTraceTest.java157 private int dMethod(int level) { argument
159 if (level > 0) {
160 count = dMethod(level - 1);
165 if (level == 0) {
168 return dMethod(level - 1);
187 public int gMethod(int level) { argument
189 int count = level;
190 if (level > 1)
191 count += gMethod(level - 1);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_CheckVLCEscapeMode.c42 * Performs escape mode decision based on the run, run+, level, level+ and
49 * [in] level Level value (non-zero value) to be encoded
52 * levelPlus = sign(level)*[abs(level) - LMAX]
55 * The run value after which level
74 OMX_S16 level,
84 level = armAbs (level);
87 /* Check for a valid entry with run, level an
71 armVCM4P2_CheckVLCEscapeMode( OMX_U32 run, OMX_U32 runPlus, OMX_S16 level, OMX_S16 levelPlus, OMX_U8 maxStoreRun, OMX_U8 maxRunForMultipleEntries, OMX_INT shortVideoHeader, const OMX_U8 *pRunIndexTable ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp874 pTcoef->level = (int) tab->level; //tab->val & 255;
879 if (tab->level != 0xFF)
884 //if (((tab->run<<8)|(tab->level)|(tab->last<<16)) == VLC_ESCAPE_CODE)
888 /* first escape mode. level is offset */
921 pTcoef->level = (int)tab->level; //tab->val & 255;
925 /* need to add back the max level */
930 pTcoef->level = pTcoef->level
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DShadowHelper.java42 public void setShadowFocusLevel(Object impl, float level); argument
63 public void setShadowFocusLevel(Object impl, float level) { argument
91 public void setShadowFocusLevel(Object impl, float level) { argument
92 ShadowHelperJbmr2.setShadowFocusLevel(impl, level);
118 public void setShadowFocusLevel(Object impl, float level) { argument
119 ShadowHelperApi21.setShadowFocusLevel(impl, level);
166 public void setShadowFocusLevel(Object impl, float level) { argument
167 mImpl.setShadowFocusLevel(impl, level);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DColorFilterCache.java62 * Returns a ColorFilter for a given alpha level between 0 and 1.0.
64 * @param level The alpha level the filter should apply.
65 * @return A ColorFilter at the alpha level for the color represented by the
68 public ColorFilter getFilterForLevel(float level) { argument
69 if (level >= 0 && level <= 1.0) {
70 int filterIndex = (int) (0xFF * level);
H A DColorFilterDimmer.java24 * Helper class for applying a dim level to a View. The ColorFilterDimmer
26 * currently active level.
39 * Creates a default ColorFilterDimmer. Uses the default color and level for
63 * @param activeLevel The level of dimming when the View is in its active
65 * @param dimmedLevel The level of dimming when the View is in its dimmed
104 * Sets the active level of the dimmer. Updates the ColorFilter based on the
105 * level.
107 * @param level A float between 0 (fully dim) and 1 (fully active).
109 public void setActiveLevel(float level) { argument
110 if (level < 0.
[all...]
/frameworks/av/media/libstagefright/wifi-display/
H A DVideoFormats.h42 unsigned char profile, level; member in struct:android::VideoFormats::config_t
74 ProfileType profile, LevelType level);
83 ProfileType profile, LevelType level);
87 ProfileType *profile, LevelType *level) const;
95 ProfileType profile, LevelType level,
H A DVideoFormats.cpp166 mConfigs[i][j].profile = mConfigs[i][j].level = 0;
176 mConfigs[i][j].level = (1ul << LEVEL_31);
183 ProfileType profile, LevelType level) {
198 setProfileLevel((ResolutionType)i, j, profile, level);
212 mConfigs[type][index].level = (1ul << LEVEL_31);
216 mConfigs[type][index].level = 0;
222 ProfileType profile, LevelType level) {
227 mConfigs[type][index].level = (1ul << level);
232 ProfileType *profile, LevelType *level) cons
181 enableResolutionUpto( ResolutionType type, size_t index, ProfileType profile, LevelType level) argument
220 setProfileLevel( ResolutionType type, size_t index, ProfileType profile, LevelType level) argument
307 unsigned profile, level, res[3]; local
340 GetProfileLevel( ProfileType profile, LevelType level, unsigned *profileIdc, unsigned *levelIdc, unsigned *constraintSet) argument
[all...]
/frameworks/base/tools/aapt/
H A DSourcePos.cpp22 Level level; member in struct:ErrorPos
26 ErrorPos(const String8& file, int line, const String8& error, Level level);
35 :line(-1), level(NOTE)
43 level(that.level)
51 level(lev)
61 this->level = rhs.level;
69 switch (level) {
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java49 * The detected signal level in dBm, also known as the RSSI.
52 * an absolute signal level which can be displayed to a user.
54 public int level; field in class:ScanResult
96 level = (int) ((double) level * (1 - alpha) + (double) previousRssi * alpha);
227 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency, argument
233 this.level = level;
241 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency, argument
247 this.level
[all...]
/frameworks/rs/java/
H A DAndroid.mk3 # Only build our tests if we doing a top-level build. Do not build the

Completed in 2213 milliseconds

1234567891011>>