/external/mesa3d/src/mesa/program/ |
prog_execute.h | 33 GLfloat lambda, GLuint unit, GLfloat color[4]); 39 GLuint unit, GLfloat color[4]); 70 const GLubyte *Samplers; /** Array mapping sampler var to tex unit */
|
/external/ppp/pppd/ |
chap-new.h | 124 extern void chap_auth_peer(int unit, char *our_name, int digest_code); 127 extern void chap_auth_with_peer(int unit, char *our_name, int digest_code);
|
eap.h | 126 int es_unit; /* Interface unit number */ 148 void eap_authwithpeer __P((int unit, char *localname)); 149 void eap_authpeer __P((int unit, char *localname));
|
cbcp.c | 64 static void cbcp_init __P((int unit)); 65 static void cbcp_open __P((int unit)); 66 static void cbcp_lowerup __P((int unit)); 67 static void cbcp_input __P((int unit, u_char *pkt, int len)); 68 static void cbcp_protrej __P((int unit)); 146 cbcp_open(unit) 147 int unit; 154 cbcp_input(unit, inpacket, pktlen) 155 int unit; 163 cbcp_state *us = &cbcp[unit]; [all...] |
/external/qemu/include/sysemu/ |
blockdev.h | 27 int unit; member in struct:DriveInfo 37 extern DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit);
|
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
EffectParameter.java | 35 public EffectParameter (int min, int max, SeekBar seekBar, TextView textView, String unit) { 40 mUnit = unit;
|
/hardware/libhardware/tests/keymaster/ |
Android.mk | 1 # Build the keymaster unit tests
|
/system/media/audio_utils/tests/ |
Android.mk | 1 # Build the unit tests for audio_utils
|
/system/media/camera/tests/ |
Android.mk | 1 # Build the unit tests.
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/ |
perftest.py | 52 def __init__(self, metric, unit=None, iterations=None): 55 self._unit = unit or self.metric_to_unit(metric) 74 def unit(self): member in class:PerfTestMetric 83 def time_unit_to_metric(unit): 84 return {'fps': 'FrameRate', 'runs/s': 'Runs', 'ms': 'Time'}[unit] 136 metric.flattened_iteration_values(), metric.unit()) 141 def log_statistics(test_name, values, unit): 158 _log.info('RESULT %s= %s %s' % (test_name, mean, unit)) 160 (median, unit, stdev, unit, sorted_values[0], unit, sorted_values[-1], unit) [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
AAVCAssembler.cpp | 162 sp<ABuffer> unit = new ABuffer(nalSize); local 163 memcpy(unit->data(), &data[2], nalSize); 165 CopyTimes(unit, buffer); 167 addSingleNALUnit(unit); 281 // We found all the fragments that make up the complete NAL unit. 287 sp<ABuffer> unit = new ABuffer(totalSize); local 288 CopyTimes(unit, *queue->begin()); 290 unit->data()[0] = (nri << 5) | nalType; 302 memcpy(unit->data() + offset, buffer->data() + 2, buffer->size() - 2); 308 unit->setRange(0, totalSize) [all...] |
/external/libnl/lib/ |
utils.c | 89 * @name Unit Pretty-Printing 96 * @arg unit destination unit pointer 99 * unit. The chosen unit is assigned to \a unit. 101 * @return The cancelled down byte counter in the new unit. 103 double nl_cancel_down_bytes(unsigned long long l, char **unit) 106 *unit = "TiB"; 109 *unit = "GiB" [all...] |
/external/doclava/res/assets/templates/assets/ |
doclava-developer-docs.css | 1007 .g-tpl-240 .g-unit, 1008 .g-unit .g-tpl-240 .g-unit, 1009 .g-unit .g-unit .g-tpl-240 .g-unit { 1015 .g-unit .g-unit .g-tpl-240 .g-first, 1016 .g-unit .g-tpl-240 .g-first, 1024 .g-tpl-240-alt .g-unit, [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSParserValues.cpp | 36 if (values[i].unit == CSSParserValue::Function) 38 else if (values[i].unit == CSSParserValue::ValueList) 76 if (unit == CSSParserValue::Operator) 78 if (unit == CSSParserValue::Function) 80 if (unit == CSSParserValue::ValueList) 82 if (unit >= CSSParserValue::Q_EMS) 85 CSSPrimitiveValue::UnitType primitiveUnit = static_cast<CSSPrimitiveValue::UnitType>(unit);
|
CSSParserValues.h | 156 int unit; member in struct:WebCore::CSSParserValue 158 inline void setFromNumber(double value, int unit = CSSPrimitiveValue::CSS_NUMBER); 261 inline void CSSParserValue::setFromNumber(double value, int unit) 269 this->unit = unit; 276 unit = Function; 284 unit = ValueList;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
gen7_sampler_state.c | 33 * Sets the sampler state for a single unit. 36 gen7_update_sampler_state(struct brw_context *brw, int unit, int ss_index, 41 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit]; 43 struct gl_sampler_object *gl_sampler = _mesa_get_samplerobj(ctx, unit); 139 * shadow comparison is enabled on each/any texture unit. 171 upload_default_color(brw, gl_sampler, unit, ss_index); 210 const unsigned unit = (fs->SamplersUsed & (1 << s)) ? local 212 if (ctx->Texture.Unit[unit]._ReallyEnabled [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_context.h | 67 #define RADEON_ST_BIT(unit) \ 68 (unit == 0 ? RADEON_CP_VC_FRMT_ST0 : (RADEON_CP_VC_FRMT_ST1 >> 2) << (2 * unit)) 70 #define RADEON_Q_BIT(unit) \ 71 (unit == 0 ? RADEON_CP_VC_FRMT_Q0 : (RADEON_CP_VC_FRMT_Q1 >> 2) << (2 * unit)) 80 struct radeon_texture_env_state unit[RADEON_MAX_TEXTURE_UNITS]; member in struct:radeon_texture_state 390 * 3 floats for each texture unit (9 floats total).
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
string.c | 13 s64 length = -1, unit = 1; local 32 unit = K; 43 unit = K * K; 54 unit = K * K * K; 65 unit = K * K * K * K; 68 unit = 1; 77 length = atoll(str) * unit;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
gen7_sampler_state.c | 33 * Sets the sampler state for a single unit. 36 gen7_update_sampler_state(struct brw_context *brw, int unit, int ss_index, 41 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit]; 43 struct gl_sampler_object *gl_sampler = _mesa_get_samplerobj(ctx, unit); 139 * shadow comparison is enabled on each/any texture unit. 171 upload_default_color(brw, gl_sampler, unit, ss_index); 210 const unsigned unit = (fs->SamplersUsed & (1 << s)) ? local 212 if (ctx->Texture.Unit[unit]._ReallyEnabled [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_context.h | 67 #define RADEON_ST_BIT(unit) \ 68 (unit == 0 ? RADEON_CP_VC_FRMT_ST0 : (RADEON_CP_VC_FRMT_ST1 >> 2) << (2 * unit)) 70 #define RADEON_Q_BIT(unit) \ 71 (unit == 0 ? RADEON_CP_VC_FRMT_Q0 : (RADEON_CP_VC_FRMT_Q1 >> 2) << (2 * unit)) 80 struct radeon_texture_env_state unit[RADEON_MAX_TEXTURE_UNITS]; member in struct:radeon_texture_state 390 * 3 floats for each texture unit (9 floats total).
|
/external/pdfium/core/src/fxge/Microsoft SDK/include/ |
GdiPlusFont.h | 112 IN Unit unit
120 unit,
136 IN Unit unit,
151 unit,
235 inline Unit
238 Unit unit;
local 239 SetStatus(DllExports::GdipGetFontUnit(nativeFont, &unit));
[all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_sample_soa.c | 75 unsigned unit, 181 bld->gallivm, unit); 592 unsigned unit, 660 lp_build_sample_texel_soa(bld, unit, 674 unsigned unit, 755 lp_build_sample_texel_soa(bld, unit, 760 lp_build_sample_texel_soa(bld, unit, 779 lp_build_sample_texel_soa(bld, unit, 784 lp_build_sample_texel_soa(bld, unit, 805 lp_build_sample_texel_soa(bld, unit, [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_sample_soa.c | 75 unsigned unit, 181 bld->gallivm, unit); 592 unsigned unit, 660 lp_build_sample_texel_soa(bld, unit, 674 unsigned unit, 755 lp_build_sample_texel_soa(bld, unit, 760 lp_build_sample_texel_soa(bld, unit, 779 lp_build_sample_texel_soa(bld, unit, 784 lp_build_sample_texel_soa(bld, unit, 805 lp_build_sample_texel_soa(bld, unit, [all...] |
/build/tools/droiddoc/templates-sac/assets/ |
android-developer-docs.css | [all...] |
/build/tools/droiddoc/templates-sdk/assets/ |
android-developer-docs.css | [all...] |