Searched defs:scalar (Results 126 - 145 of 145) sorted by relevance

123456

/external/llvm/unittests/Support/
H A DYAMLIOTest.cpp197 // Test the reading of all built-in scalar conversions
244 // Test writing then reading back all built-in scalar types
624 // MyCustomType is formatted as a yaml scalar. A value of
631 static StringRef input(StringRef scalar, void* ctxt, MyCustomType &value) { argument
632 size_t byStart = scalar.find("by");
634 StringRef lenStr = scalar.slice(0, byStart);
639 StringRef widthStr = scalar.drop_front(byStart+2);
705 static StringRef input(StringRef scalar, void *, MyNumber &value) { argument
707 if ( getAsSignedInteger(scalar, 0, n) )
1218 // Test error handling of unknown enumerated scalar
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_soa.c440 * Loop over elements of index_vec, load scalar value, insert it into 'res'.
448 LLVMValueRef scalar = LLVMBuildLoad(builder, scalar_ptr, ""); local
450 res = LLVMBuildInsertElement(builder, res, scalar, ii, "");
483 * Loop over elements of index_vec, store scalar value.
616 LLVMValueRef scalar, scalar_ptr; local
627 scalar = LLVMBuildLoad(builder, temp_ptr, "");
629 scalar = LLVMBuildLoad(builder, scalar_ptr, "");
631 return lp_build_broadcast_scalar(bld_fetch, scalar);
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_insn.c139 scalar( struct src_register src, function
761 return scalar(reg, swizzle);
811 zero = scalar(zero, TGSI_SWIZZLE_X);
822 src0 = scalar(src( tmp ), TGSI_SWIZZLE_X);
917 * RCP is scalar in SVGA3D:
925 scalar(src1, i) ))
961 temp_src0 = scalar(src( temp ), TGSI_SWIZZLE_X);
962 temp_src1 = scalar(src( temp ), TGSI_SWIZZLE_Y);
993 src1 = scalar(src1, TGSI_SWIZZLE_W);
1039 src0 = scalar(src
[all...]
/external/mesa3d/src/mesa/main/
H A Dff_fragment_shader.cpp635 ir_rvalue *const scalar = src->type->is_scalar() ? src : swizzle_w(src); local
637 return sub(new(p->mem_ctx) ir_constant(1.0f), scalar);
/external/opencv/cxcore/src/
H A Dcxarray.cpp1696 cvScalarToRawData( const CvScalar* scalar, void* data, int type, int extend_to_12 ) argument
1707 assert( scalar && data );
1716 int t = cvRound( scalar->val[cn] );
1723 int t = cvRound( scalar->val[cn] );
1730 int t = cvRound( scalar->val[cn] );
1737 int t = cvRound( scalar->val[cn] );
1743 ((int*)data)[cn] = cvRound( scalar->val[cn] );
1747 ((float*)data)[cn] = (float)(scalar->val[cn]);
1751 ((double*)data)[cn] = (double)(scalar->val[cn]);
1777 cvRawDataToScalar( const void* data, int flags, CvScalar* scalar )
2198 CvScalar scalar = {{0,0,0,0}}; local
2239 CvScalar scalar = {{0,0,0,0}}; local
2279 CvScalar scalar = {{0,0,0,0}}; local
2308 CvScalar scalar = {{0,0,0,0}}; local
[all...]
/external/valgrind/main/none/tests/ppc32/
H A Dtest_isa_2_06_part2.c1216 fprintf(stderr, "Unsupported single precision for scalar op in test_vx_aORm_fp_ops\n");
1296 Bool scalar = False; local
1304 scalar = True;
1309 // Only support double precision scalar ops in this function
1313 fprintf(stderr, "Unsupported single precision for scalar op in test_vx_aORm_fp_ops\n");
1348 if (scalar) {
1349 // For scalar op, only need to copy one doubleword into each vector's element 0
1726 "Test scalar floating point arithmetic instructions"},
/external/valgrind/main/none/tests/ppc64/
H A Dtest_isa_2_06_part2.c1216 fprintf(stderr, "Unsupported single precision for scalar op in test_vx_aORm_fp_ops\n");
1296 Bool scalar = False; local
1304 scalar = True;
1309 // Only support double precision scalar ops in this function
1313 fprintf(stderr, "Unsupported single precision for scalar op in test_vx_aORm_fp_ops\n");
1348 if (scalar) {
1349 // For scalar op, only need to copy one doubleword into each vector's element 0
1726 "Test scalar floating point arithmetic instructions"},
/external/lldb/source/Core/
H A DValueObject.cpp415 m_location_str = (reg_info->encoding == lldb::eEncodingVector) ? "vector" : "scalar";
419 m_location_str = (value_type == Value::eValueTypeVector) ? "vector" : "scalar";
450 ValueObject::ResolveValue (Scalar &scalar) argument
456 scalar = tmp_value.ResolveValue(&exe_ctx);
457 if (scalar.IsValid())
461 return scalar.ExtractBitfield (bitfield_bit_size, GetBitfieldBitOffset());
1023 error.SetErrorStringWithFormat("unable to set scalar value: %s", set_error.AsCString());
1030 // If it is a load address, then the scalar value is the storage location
1053 // If it is a host address, then we stuff the scalar as a DataBuffer into the Value's data.
1443 Scalar scalar; local
[all...]
/external/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1370 // the result of the expression must be a scalar that can be substituted
1426 Scalar scalar; local
1427 if (expr_result_valobj_sp->ResolveValue (scalar))
1432 scalar.GetValue (&value_strm, show_type);
1442 error.SetErrorStringWithFormat("expression value didn't result in a scalar value for the expression '%s'", expr_str.c_str());
1447 error.SetErrorStringWithFormat("expression value didn't result in a scalar value for the expression '%s'", expr_str.c_str());
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_mac.cpp261 static CGFloat ScalarToCG(SkScalar scalar) { argument
263 return SkScalarToFloat(scalar);
266 return (CGFloat) SkScalarToDouble(scalar);
/external/lldb/source/Target/
H A DTarget.cpp1449 Scalar &scalar,
1462 scalar = data.GetMaxU32 (&offset, byte_size);
1464 scalar = data.GetMaxU64 (&offset, byte_size);
1467 scalar.SignExtend(byte_size * 8);
1473 error.SetErrorStringWithFormat ("byte size of %u is too large for integer scalar type", byte_size);
1485 Scalar scalar; local
1490 scalar,
1492 return scalar.ULongLong(fail_value);
1502 Scalar scalar; local
1507 scalar,
1445 ReadScalarIntegerFromMemory(const Address& addr, bool prefer_file_cache, uint32_t byte_size, bool is_signed, Scalar &scalar, Error &error) argument
[all...]
/external/opencv/cv/include/
H A Dcvcompat.h135 CvScalar scalar = cvSum( image ); local
136 return scalar.val[0];
/external/skia/src/ports/
H A DSkFontHost_mac.cpp265 static CGFloat ScalarToCG(SkScalar scalar) { argument
267 return SkScalarToFloat(scalar);
270 return (CGFloat) SkScalarToDouble(scalar);
/external/opencv/cxcore/include/
H A Dcxtypes.h1120 CvScalar scalar; local
1121 scalar.val[0] = val0; scalar.val[1] = val1;
1122 scalar.val[2] = val2; scalar.val[3] = val3;
1123 return scalar;
1129 CvScalar scalar; local
1130 scalar.val[0] = val0;
1131 scalar.val[1] = scalar
1137 CvScalar scalar; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/v8/src/
H A Dobjects-inl.h4178 Handle<Object> Uint8ArrayTraits::ToHandle(Isolate* isolate, uint8_t scalar) { argument
4179 return handle(Smi::FromInt(scalar), isolate);
4184 uint8_t scalar) {
4185 return handle(Smi::FromInt(scalar), isolate);
4189 Handle<Object> Int8ArrayTraits::ToHandle(Isolate* isolate, int8_t scalar) { argument
4190 return handle(Smi::FromInt(scalar), isolate);
4194 Handle<Object> Uint16ArrayTraits::ToHandle(Isolate* isolate, uint16_t scalar) { argument
4195 return handle(Smi::FromInt(scalar), isolate);
4199 Handle<Object> Int16ArrayTraits::ToHandle(Isolate* isolate, int16_t scalar) { argument
4200 return handle(Smi::FromInt(scalar), isolat
4183 ToHandle(Isolate* isolate, uint8_t scalar) argument
4204 ToHandle(Isolate* isolate, uint32_t scalar) argument
4209 ToHandle(Isolate* isolate, int32_t scalar) argument
4214 ToHandle(Isolate* isolate, float scalar) argument
4219 ToHandle(Isolate* isolate, double scalar) argument
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp3321 // scalar or vector data type argument..."
3322 // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic
4944 /// Prepares for a scalar cast, performing all the necessary stages
4947 // Both Src and Dest are scalar types, i.e. arithmetic or pointer.
5109 llvm_unreachable("Unhandled scalar cast");
5123 // they're real types (i.e. non-complex, non-pointer scalar types).
5198 // conversion will take place first from scalar to elt type, and then
5437 // OpenCL v1.1 s6.3.i says the condition is allowed to be a vector or scalar.
5454 // Both operands should be of scalar type.
5731 // If the condition is a vector, and both operands are scalar,
6802 tryVectorConvertAndSplat(Sema &S, ExprResult *scalar, QualType scalarTy, QualType vectorEltTy, QualType vectorTy) argument
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_amd64_toIR.c7183 /* Vector by scalar shift of G by the amount specified at the bottom
7259 /* Vector by scalar shift of E by an immediate byte. This is a
8672 omits the scalar ones that need rounding modes. Note also that
9193 /* Vector by scalar shift of G by the amount specified at the bottom
9268 /* Vector by scalar shift of E by an immediate byte. */
22201 /* Vector by scalar shift of V by the amount specified at the bottom
22275 /* Vector by scalar shift of V by the amount specified at the bottom
22461 /* Vector by scalar shift of E into V, by an immediate byte. Modified
22518 /* Vector by scalar shift of E into V, by an immediate byte. Modified
27017 Bool scalar local
[all...]
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 718 milliseconds

123456