HomeSort by relevance Sort by last modified time
    Searched refs:unit (Results 251 - 275 of 931) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_statevars.c 205 /* state[1] is the texture unit */
206 const GLuint unit = (GLuint) state[1]; local
210 COPY_4V(value, ctx->Texture.Unit[unit].GenS.EyePlane);
213 COPY_4V(value, ctx->Texture.Unit[unit].GenT.EyePlane);
216 COPY_4V(value, ctx->Texture.Unit[unit].GenR.EyePlane);
219 COPY_4V(value, ctx->Texture.Unit[unit].GenQ.EyePlane)
241 const GLuint unit = (GLuint) state[1]; local
438 const int unit = (int) state[2]; local
581 const int unit = (int) state[2]; local
592 const int unit = (int) state[2]; local
1127 GLuint unit = MIN2(ctx->Texture.CurrentUnit, local
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractListeningExecutorService.java 142 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
144 return doInvokeAny(tasks, true, unit.toNanos(timeout));
181 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
183 if (tasks == null || unit == null) {
186 long nanos = unit.toNanos(timeout);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
util.c 124 unsigned long convert_unit(unsigned long value, char *unit)
126 *unit = ' ';
130 *unit = 'K';
135 *unit = 'M';
140 *unit = 'G';
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_state_frag.c 46 int unit; member in struct:combiner_state
63 /* Initialize a combiner_state struct from the texture unit
67 ctx->Texture.Unit[i]._CurrentCombine; \
69 (rc)->unit = i; \
89 return rc->unit ? COMBINER_SOURCE(TEXTURE1) :
105 return rc->unit ? COMBINER_SOURCE(PREVIOUS) :
140 rc->unit : source - GL_TEXTURE0);
141 struct gl_texture_object *t = rc->ctx->Texture.Unit[i]._Current;
260 if (ctx->Texture.Unit[i]._ReallyEnabled) {
290 nv04->blend |= get_texenv_mode(ctx->Texture.Unit[0].EnvMode)
    [all...]
  /external/mesa3d/src/mesa/program/
prog_statevars.c 205 /* state[1] is the texture unit */
206 const GLuint unit = (GLuint) state[1]; local
210 COPY_4V(value, ctx->Texture.Unit[unit].GenS.EyePlane);
213 COPY_4V(value, ctx->Texture.Unit[unit].GenT.EyePlane);
216 COPY_4V(value, ctx->Texture.Unit[unit].GenR.EyePlane);
219 COPY_4V(value, ctx->Texture.Unit[unit].GenQ.EyePlane)
241 const GLuint unit = (GLuint) state[1]; local
438 const int unit = (int) state[2]; local
581 const int unit = (int) state[2]; local
592 const int unit = (int) state[2]; local
1127 GLuint unit = MIN2(ctx->Texture.CurrentUnit, local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
stringtriebuilder.cpp 138 // Branch on the middle unit.
139 // First, find the middle unit.
142 middleUnits[ltLength]=getElementUnit(i, unitIndex); // middle unit
149 // For each unit, find its elements array start and whether it has a final value.
155 UChar unit=getElementUnit(i++, unitIndex); local
156 i=indexOfElementWithNextUnit(i, unitIndex, unit);
179 // Write the rest of this node's unit-value pairs.
184 // Write the final value for the one string ending with this unit.
267 // Branch on the middle unit.
268 // First, find the middle unit
290 UChar unit=getElementUnit(i++, unitIndex); local
300 UChar unit=getElementUnit(start, unitIndex); local
    [all...]
ucharstriebuilder.cpp 30 * of the 16-bit-unit sequences, until the UCharsTrie is built.
57 // The first strings unit contains the string length.
71 // Too long: We store the length in 1 unit.
258 UChar unit=elements[i++].charAt(unitIndex, strings); local
259 while(i<limit && unit==elements[i].charAt(unitIndex, strings)) {
270 UChar unit=elements[i++].charAt(unitIndex, strings); local
271 while(unit==elements[i].charAt(unitIndex, strings)) {
279 UCharsTrieBuilder::indexOfElementWithNextUnit(int32_t i, int32_t unitIndex, UChar unit) const {
280 while(unit==elements[i].charAt(unitIndex, strings)) {
348 UCharsTrieBuilder::write(int32_t unit) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_fs.c 164 state->unit[i].compare_mode_enabled = 1;
167 state->unit[i].texture_compare_func = s->state.compare_func;
170 state->unit[i].non_normalized_coords = !s->state.normalized_coords;
171 state->unit[i].convert_unorm_to_snorm =
185 state->unit[i].texture_swizzle =
188 } else if (state->unit[i].compare_mode_enabled) {
189 state->unit[i].texture_swizzle =
198 state->unit[i].wrap_mode = RC_WRAP_REPEAT;
202 state->unit[i].wrap_mode = RC_WRAP_MIRRORED_REPEAT;
208 state->unit[i].wrap_mode = RC_WRAP_MIRRORED_CLAMP
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen7_wm_surface_state.c 233 unsigned unit,
238 struct gl_texture_object *tObj = ctx->Texture.Unit[unit]._Current;
293 unsigned unit,
298 struct gl_texture_object *tObj = ctx->Texture.Unit[unit]._Current;
302 struct gl_sampler_object *sampler = _mesa_get_samplerobj(ctx, unit);
307 gen7_update_buffer_texture_surface(ctx, unit, binding_table, surf_index);
452 gen7_update_null_renderbuffer_surface(struct brw_context *brw, unsigned unit)
477 sizeof(*surf), 32, &brw->wm.surf_offset[unit]);
    [all...]
  /external/deqp/framework/qphelper/
qpTestLog.h 200 deBool qpTestLog_writeInteger (qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value);
201 deBool qpTestLog_writeFloat (qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value);
222 deBool qpTestLog_writeValueInfo (qpTestLog* log, const char* name, const char* description, const char* unit, qpSampleValueTag tag);
  /external/icu/icu4c/source/common/
stringtriebuilder.cpp 138 // Branch on the middle unit.
139 // First, find the middle unit.
142 middleUnits[ltLength]=getElementUnit(i, unitIndex); // middle unit
149 // For each unit, find its elements array start and whether it has a final value.
155 UChar unit=getElementUnit(i++, unitIndex); local
156 i=indexOfElementWithNextUnit(i, unitIndex, unit);
179 // Write the rest of this node's unit-value pairs.
184 // Write the final value for the one string ending with this unit.
267 // Branch on the middle unit.
268 // First, find the middle unit
290 UChar unit=getElementUnit(i++, unitIndex); local
300 UChar unit=getElementUnit(start, unitIndex); local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_fs.c 164 state->unit[i].compare_mode_enabled = 1;
167 state->unit[i].texture_compare_func = s->state.compare_func;
170 state->unit[i].non_normalized_coords = !s->state.normalized_coords;
171 state->unit[i].convert_unorm_to_snorm =
185 state->unit[i].texture_swizzle =
188 } else if (state->unit[i].compare_mode_enabled) {
189 state->unit[i].texture_swizzle =
198 state->unit[i].wrap_mode = RC_WRAP_REPEAT;
202 state->unit[i].wrap_mode = RC_WRAP_MIRRORED_REPEAT;
208 state->unit[i].wrap_mode = RC_WRAP_MIRRORED_CLAMP
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_wm_surface_state.c 233 unsigned unit,
238 struct gl_texture_object *tObj = ctx->Texture.Unit[unit]._Current;
293 unsigned unit,
298 struct gl_texture_object *tObj = ctx->Texture.Unit[unit]._Current;
302 struct gl_sampler_object *sampler = _mesa_get_samplerobj(ctx, unit);
307 gen7_update_buffer_texture_surface(ctx, unit, binding_table, surf_index);
452 gen7_update_null_renderbuffer_surface(struct brw_context *brw, unsigned unit)
477 sizeof(*surf), 32, &brw->wm.surf_offset[unit]);
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 0 unit Antlr.Runtime.Collections.Tests;
6 This unit contains a skeleton test case class generated by the Test Case Wizard.
7 Modify the generated code to correctly setup and call the methods from the unit
  /external/chromium_org/chrome/browser/
process_info_snapshot_mac.cc 85 // Converts a byte unit such as 'K' or 'M' into the scale for the unit.
89 static bool ConvertByteUnitToScale(char unit, uint64_t* out_scale) {
91 switch (unit) {
247 std::string unit; local
248 in >> unit; local
252 if (unit.empty())
256 if (!ConvertByteUnitToScale(unit[0], &scale))
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
OkHttpClient.java 84 public void setConnectTimeout(long timeout, TimeUnit unit) {
88 if (unit == null) {
89 throw new IllegalArgumentException("unit == null");
91 long millis = unit.toMillis(timeout);
108 public void setReadTimeout(long timeout, TimeUnit unit) {
112 if (unit == null) {
113 throw new IllegalArgumentException("unit == null");
115 long millis = unit.toMillis(timeout);
  /cts/tests/tests/bionic/
Android.mk 3 test_executable := bionic-unit-tests-cts
  /cts/tests/tests/nativemedia/sl/
Android.mk 1 # Build the unit tests.
  /external/apache-http/src/org/apache/http/impl/conn/
IdleConnectionHandler.java 78 public void add(HttpConnection connection, long validDuration, TimeUnit unit) {
86 connectionToTimes.put(connection, new TimeValues(timeAdded, validDuration, unit));
184 * @param validUnit The unit of time the duration is specified in.
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
WebViewFindApisTestBase.java 145 public int get(long timeout, TimeUnit unit) throws Throwable {
146 if (!mLatch.await(timeout, unit)) {
  /external/chromium_org/media/base/android/
media_decoder_job.h 151 // Queues an access unit into |media_codec_bridge_|'s input buffer.
152 MediaCodecStatus QueueInputBuffer(const AccessUnit& unit);
161 // Posts a task to start decoding the current access unit in |received_data_|.
166 // Helper function to decode data on |decoder_task_runner_|. |unit| contains
177 void DecodeInternal(const AccessUnit& unit,
190 // Helper function to get the current access unit that is being decoded.
216 // Called when an access unit is consumed by the decoder. |is_config_change|
217 // indicates whether the current access unit is a config change. If it is
218 // true, the next access unit is guarateed to be an I-frame.
260 // unit is EOS or empty, and report |MEDIA_CODEC_OUTPUT_END_OF_STREAM|. Thi
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Canvas/resources/
canvas_runner.js 11 PerfTestRunner.prepareToMeasureValuesAsync({unit: 'runs/s',
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryToken.cpp 56 void MediaQueryToken::convertToDimensionWithUnit(String unit)
60 m_unit = CSSPrimitiveValue::fromName(unit);
  /external/chromium_org/third_party/icu/source/common/unicode/
ucharstriebuilder.h 143 virtual int32_t indexOfElementWithNextUnit(int32_t i, int32_t unitIndex, UChar unit) const;
166 virtual int32_t write(int32_t unit);
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/
__init__.py 59 def unit(run = []): function
68 raise SystemExit(unit(sys.argv[1:]))

Completed in 814 milliseconds

<<11121314151617181920>>