HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 526 - 550 of 2100) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
shaders_cache.c 98 "DCL TEMP[0..9], CONSTANT\n"
134 struct ureg_dst out, *temp = NULL; local
193 temp = (struct ureg_dst *) malloc(sizeof(struct ureg_dst) * end_temp);
195 temp[i] = ureg_DECL_temporary(ureg);
212 temp,
216 &temp[0],
219 temp,
235 ureg_release_temporary(ureg, temp[i]);
241 if (temp)
242 free(temp);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_algebraic.cpp 108 ir_rvalue *temp = ir2->operands[op2]; local
110 ir1->operands[op1] = temp;
191 ir_expression *temp; local
264 temp = new(mem_ctx) ir_expression(ir_unop_neg,
268 return swizzle_if_required(ir, temp);
306 temp = new(mem_ctx) ir_expression(ir_unop_rcp,
310 return swizzle_if_required(ir, temp);
409 temp = new(mem_ctx) ir_expression(ir_unop_rsq,
413 return swizzle_if_required(ir, temp);
  /external/mesa3d/src/gallium/state_trackers/vega/
shaders_cache.c 98 "DCL TEMP[0..9], CONSTANT\n"
134 struct ureg_dst out, *temp = NULL; local
193 temp = (struct ureg_dst *) malloc(sizeof(struct ureg_dst) * end_temp);
195 temp[i] = ureg_DECL_temporary(ureg);
212 temp,
216 &temp[0],
219 temp,
235 ureg_release_temporary(ureg, temp[i]);
241 if (temp)
242 free(temp);
    [all...]
  /external/mesa3d/src/glsl/
opt_algebraic.cpp 108 ir_rvalue *temp = ir2->operands[op2]; local
110 ir1->operands[op1] = temp;
191 ir_expression *temp; local
264 temp = new(mem_ctx) ir_expression(ir_unop_neg,
268 return swizzle_if_required(ir, temp);
306 temp = new(mem_ctx) ir_expression(ir_unop_rcp,
310 return swizzle_if_required(ir, temp);
409 temp = new(mem_ctx) ir_expression(ir_unop_rsq,
413 return swizzle_if_required(ir, temp);
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 303 int temp = this.read(); local
304 if (temp < 0) {
307 return temp != 0;
323 int temp = this.read(); local
324 if (temp < 0) {
327 return (byte) temp;
531 int temp = this.read(); local
532 if (temp < 0) {
535 return temp;
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Matrix.cpp 78 Matrix* temp = new Matrix(*this); local
79 if (m != NULL && temp != NULL) {
80 multiply(*temp, *m);
83 delete temp;
88 Matrix* temp = new Matrix(*this); local
89 if (m != NULL && temp != NULL) {
90 multiply(*temp, *m);
93 delete temp;
98 Matrix* temp = new Matrix(*this); local
99 if (m != NULL && temp != NULL)
    [all...]
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetService.java 74 int temp = 0; local
80 temp = mCursor.getInt(tempColIndex);
87 rv.setTextViewText(R.id.widget_item, String.format(formatStr, temp, day));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
ExtendedKeyUsage.java 128 KeyPurposeId[] temp = new KeyPurposeId[seq.size()]; local
133 temp[i++] = KeyPurposeId.getInstance(it.nextElement());
135 return temp;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
X509ExtensionUtil.java 60 Collection temp = new ArrayList(); local
92 temp.add(list);
94 return Collections.unmodifiableCollection(temp);
  /external/chromium/chrome/browser/sync/sessions/
sync_session.cc 38 std::vector<ModelSafeWorker*> temp; local
41 std::back_inserter(temp));
42 workers_.swap(temp);
  /external/chromium_org/components/autofill/core/common/
form_data.cc 41 FormFieldData temp;
43 if (!DeserializeFormFieldData(iter, &temp))
46 fields->push_back(temp);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_gs_emit.c 77 c->reg.temp = retype(brw_vec8_grf(i++, 0), BRW_REGISTER_TYPE_UD);
184 allocate ? c->reg.temp
199 get_element_ud(c->reg.temp, 0));
242 c->reg.temp,
249 get_element_ud(c->reg.temp, 0));
373 brw_ADD(p, get_element_ud(c->reg.temp, 0),
376 get_element_ud(c->reg.temp, 0),
401 /* Get primitive type into temp register. */
402 brw_AND(p, get_element_ud(c->reg.temp, 0),
410 get_element_ud(c->reg.temp, 0)
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
SkGLContextHelper.cpp 38 const GrGLubyte* temp; local
48 SK_GL_RET(*this, temp, GetString(GR_GL_VERSION));
49 const char* versionStr = reinterpret_cast<const char*>(temp);
  /external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrDebugGL.h 42 GrFakeRefObj *temp = (*gFactoryFunc[type])(); local
44 fObjects.push_back(temp);
46 return temp;
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
covar.h 16 Scalar temp; local
30 temp = r(k,k) * r(j,k);
32 r.col(k).head(j+1) -= r.col(j).head(j+1) * temp;
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintShrinkWrap.java 77 float temp = currentTranslation.distance(p); local
78 if(temp < distance) {
79 distance = temp;
  /external/lzma/CPP/Windows/
PropVariantConversions.cpp 30 char temp[16]; local
34 temp[pos++] = (char)('0' + value % 10);
42 *s++ = temp[--pos];
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Encoder.java 57 int temp = _cache; local
60 Stream.write(temp + LowHi);
61 temp = 0xFF;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_gs_emit.c 77 c->reg.temp = retype(brw_vec8_grf(i++, 0), BRW_REGISTER_TYPE_UD);
184 allocate ? c->reg.temp
199 get_element_ud(c->reg.temp, 0));
242 c->reg.temp,
249 get_element_ud(c->reg.temp, 0));
373 brw_ADD(p, get_element_ud(c->reg.temp, 0),
376 get_element_ud(c->reg.temp, 0),
401 /* Get primitive type into temp register. */
402 brw_AND(p, get_element_ud(c->reg.temp, 0),
410 get_element_ud(c->reg.temp, 0)
    [all...]
  /external/oprofile/gui/
oprof_start.cpp 572 QListViewItem * temp = *it; local
576 help_str += temp->text(0).latin1();
578 selected_events.insert(temp);
623 uint temp = buffer_size_edit->text().toUInt(); local
624 if (temp < OP_MIN_BUF_SIZE || temp > OP_MAX_BUF_SIZE) {
627 error << "buffer size out of range: " << temp
635 config.buffer_size = temp;
637 temp = buffer_watershed_edit->text().toUInt();
639 if (temp > config.buffer_size / 2)
642 error << "buffer watershed out of range: " << temp local
    [all...]
  /external/oprofile/libpp/
sample_container.cpp 28 count_array_t temp(counts);
29 temp += s->counts;
30 return temp;
  /external/qemu/android/utils/
tempfile.c 30 /** TEMP FILE SUPPORT
67 D( "TEMP directory path is too long" );
114 tempfile_path(TempFile* temp)
116 return temp ? temp->name : NULL;
129 /** TEMP FILE CLEANUP
  /external/skia/gm/
samplerstress.cpp 112 SkRect temp; local
113 temp.set(SkIntToScalar(115),
119 path.addRoundRect(temp, SkIntToScalar(5), SkIntToScalar(5));
  /external/skia/src/gpu/gl/
SkGLContextHelper.cpp 38 const GrGLubyte* temp; local
48 SK_GL_RET(*this, temp, GetString(GR_GL_VERSION));
49 const char* versionStr = reinterpret_cast<const char*>(temp);
  /external/skia/src/gpu/gl/debug/
GrDebugGL.h 42 GrFakeRefObj *temp = (*gFactoryFunc[type])(); local
44 fObjects.push_back(temp);
46 return temp;

Completed in 1132 milliseconds

<<21222324252627282930>>