Home
last modified time | relevance | path

Searched refs:inValue (Results 1 – 25 of 754) sorted by relevance

12345678910>>...31

/dports/editors/texmacs/TeXmacs-1.99.4-src/src/Plugins/Pdf/PDFWriter/
H A DCFFPrimitiveWriter.cpp81 return WriteByte(inValue); in WriteCard8()
211 if(-107 <= inValue && inValue <= 107) in WriteIntegerOperand()
215 else if(108 <= inValue && inValue <= 1131) in WriteIntegerOperand()
219 inValue-=108; in WriteIntegerOperand()
221 byte1 = inValue & 0xff; in WriteIntegerOperand()
229 else if(-1131 <= inValue && inValue <= -108) in WriteIntegerOperand()
233 inValue = -(inValue + 108); in WriteIntegerOperand()
244 else if(-32768 <= inValue && inValue<= 32767) in WriteIntegerOperand()
274 byte4 = inValue & 0xff; in Write5ByteDictInteger()
305 inValue = -inValue; in WriteRealOperand()
[all …]
H A DDictionaryContext.cpp76 void DictionaryContext::WriteIntegerValue(long long inValue) in WriteIntegerValue() argument
78 mObjectsContext->WriteInteger(inValue,eTokenSeparatorEndLine); in WriteIntegerValue()
99 mObjectsContext->WriteLiteralString(inValue,eTokenSeparatorEndLine); in WriteLiteralStringValue()
104 mObjectsContext->WriteKeyword(inValue); in WriteKeywordValue()
110 mObjectsContext->WriteHexString(inValue,eTokenSeparatorEndLine); in WriteHexStringValue()
118 void DictionaryContext::WriteNameValue(const std::string& inValue) in WriteNameValue() argument
120 mObjectsContext->WriteName(inValue,eTokenSeparatorEndLine); in WriteNameValue()
134 void DictionaryContext::WriteDoubleValue(double inValue) in WriteDoubleValue() argument
136 mObjectsContext->WriteDouble(inValue,eTokenSeparatorEndLine); in WriteDoubleValue()
139 void DictionaryContext::WriteBooleanValue(bool inValue) in WriteBooleanValue() argument
[all …]
H A DCFFPrimitiveWriter.h38 PDFHummus::EStatusCode WriteByte(Byte inValue);
42 PDFHummus::EStatusCode WriteCard8(Byte inValue);
43 PDFHummus::EStatusCode WriteCard16(unsigned short inValue);
46 PDFHummus::EStatusCode WriteOffset(unsigned long inValue);
47 PDFHummus::EStatusCode WriteOffSize(Byte inValue);
48 PDFHummus::EStatusCode WriteSID(unsigned short inValue);
54 PDFHummus::EStatusCode WriteIntegerOperand(long inValue);
55 PDFHummus::EStatusCode Write5ByteDictInteger(long inValue);
56 PDFHummus::EStatusCode WriteRealOperand(double inValue,long inFractalLength=10);
66 PDFHummus::EStatusCode Write3ByteUnsigned(unsigned long inValue);
[all …]
H A DTrueTypePrimitiveWriter.cpp46 EStatusCode TrueTypePrimitiveWriter::WriteBYTE(Byte inValue) in WriteBYTE() argument
58 EStatusCode TrueTypePrimitiveWriter::WriteULONG(unsigned long inValue) in WriteULONG() argument
60 Byte byte1 = (inValue>>24) & 0xff; in WriteULONG()
61 Byte byte2 = (inValue>>16) & 0xff; in WriteULONG()
62 Byte byte3 = (inValue>>8) & 0xff; in WriteULONG()
63 Byte byte4 = inValue & 0xff; in WriteULONG()
80 EStatusCode TrueTypePrimitiveWriter::WriteUSHORT(unsigned short inValue) in WriteUSHORT() argument
82 Byte byte1 = (inValue>>8) & 0xff; in WriteUSHORT()
83 Byte byte2 = inValue & 0xff; in WriteUSHORT()
94 EStatusCode TrueTypePrimitiveWriter::WriteSHORT(short inValue) in WriteSHORT() argument
[all …]
H A DBoxingBase.h38 BoxingBase(const T& inValue);
42 BoxingBase<T>& operator =(const T& inValue);
55 BoxingBase<T>::BoxingBase(const T& inValue) in BoxingBase() argument
57 boxedValue = inValue; in BoxingBase()
69 boxedValue = inValue;
105 void Write(const T& inValue,std::string& outWriteTo);
113 stream<<inValue; in Write()
121 stream<<inValue; in Write()
131 BoxingBaseWithRW(const U& inValue);
150 BoxingBaseWithRW<U,Reader,Writer>::BoxingBaseWithRW(const U& inValue):BoxingBase<U>(inValue) in BoxingBaseWithRW() argument
[all …]
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/render/
H A Dqssgrendershaderprogram.cpp61 oldValue = inValue; in applyConstant()
78 oldValue = inValue; in applyConstant()
95 oldValue = inValue; in applyConstant()
112 oldValue = inValue; in applyConstant()
129 oldValue = inValue; in applyConstant()
146 oldValue = inValue; in applyConstant()
377 if (inValue) { in applyConstant()
400 if (inValue) { in applyConstant()
434 if (inValue) { in applyConstant()
457 if (inValue) { in applyConstant()
[all …]
H A Dqssgrendershaderprogram_p.h141 …void setConstantValue(QSSGRenderShaderConstantBase *inConstant, qint32 inValue, const qint32 inCou…
145 …void setConstantValue(QSSGRenderShaderConstantBase *inConstant, bool inValue, const qint32 inCount…
146 …void setConstantValue(QSSGRenderShaderConstantBase *inConstant, const bool_2 &inValue, const qint3…
147 …void setConstantValue(QSSGRenderShaderConstantBase *inConstant, const bool_3 &inValue, const qint3…
148 …void setConstantValue(QSSGRenderShaderConstantBase *inConstant, const bool_4 &inValue, const qint3…
149 …void setConstantValue(QSSGRenderShaderConstantBase *inConstant, const float &inValue, const qint32…
178 …void setPropertyValue(const char *inConstantName, const TDataType &inValue, const qint32 inCount =…
184 setConstantValue(theConstant.data(), inValue, inCount);
206 setConstantValue(inConstant, inValue, inCount);
320 void set(const TDataType &inValue) in set()
[all …]
/dports/games/dunelegacy/dunelegacy-0.96.4/src/fixmath/
H A Dfix32_exp.c11 fix32_t fix32_exp(fix32_t inValue) { in fix32_exp() argument
18 fix32_t tempIndex = (inValue ^ (inValue >> 16)); in fix32_exp()
19 tempIndex = (inValue ^ (inValue >> 4)) & 0x0FFF; in fix32_exp()
33 bool neg = (inValue < 0); in fix32_exp()
34 if (neg) inValue = -inValue; in fix32_exp()
37 fix32_t term = inValue; in fix32_exp()
61 fix32_t fix32_log(fix32_t inValue) in fix32_log() argument
68 if (inValue <= 0) in fix32_log()
75 inValue = fix32_div(inValue, e_to_fourth); in fix32_log()
79 while (inValue < fix32_one) in fix32_log()
[all …]
H A Dfix16_exp.c11 fix16_t fix16_exp(fix16_t inValue) { in fix16_exp() argument
15 if(inValue <= -772243 ) return 0; in fix16_exp()
18 fix16_t tempIndex = (inValue ^ (inValue >> 16)); in fix16_exp()
19 tempIndex = (inValue ^ (inValue >> 4)) & 0x0FFF; in fix16_exp()
33 bool neg = (inValue < 0); in fix16_exp()
34 if (neg) inValue = -inValue; in fix16_exp()
37 fix16_t term = inValue; in fix16_exp()
68 if (inValue <= 0) in fix16_log()
75 inValue = fix16_div(inValue, e_to_fourth); in fix16_log()
79 while (inValue < fix16_one) in fix16_log()
[all …]
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/thoas/go-funk/
H A Dassign.go42 inValue := reflect.ValueOf(in)
43 inKind := inValue.Type().Kind()
49 inValue = inValue.Elem() // if it is ptr we set its content not ptr its self
64 kind := inValue.Kind()
78 inValue = fValue
82 length := inValue.Len()
92 if inValue.IsNil() {
95 inValue.Set(reflect.New(inValue.Type().Elem()))
98 inValue = redirectValue(inValue)
113 if inValue.Kind() != setValue.Kind() && inValue.Kind() != reflect.Interface {
[all …]
H A Dpresence.go110 inValue := reflect.ValueOf(in)
114 inType := inValue.Type()
122 for i := 0; i < inValue.Len(); i++ {
135 inValue := reflect.ValueOf(in)
139 inType := inValue.Type()
146 length := inValue.Len()
161 inValue := reflect.ValueOf(in)
163 inType := inValue.Type()
170 for _, key := range inValue.MapKeys() {
171 if equalTo(key, inValue.MapIndex(key)) {
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.jdbc/src/main/java/org/springframework/jdbc/core/
H A DStatementCreatorUtils.java187 Object inValueToUse = inValue; in setParameterValueInternal()
280 if (inValue instanceof SqlTypeValue) { in setValue()
283 else if (inValue instanceof SqlValue) { in setValue()
291 if (inValue instanceof BigDecimal) { in setValue()
311 Calendar cal = (Calendar) inValue; in setValue()
328 Calendar cal = (Calendar) inValue; in setValue()
345 Calendar cal = (Calendar) inValue; in setValue()
360 Calendar cal = (Calendar) inValue; in setValue()
365 ps.setObject(paramIndex, inValue); in setValue()
416 for (Object inValue : paramValues) { in cleanupParameters()
[all …]
/dports/cad/digital/Digital-0.27/src/main/java/de/neemann/digital/core/
H A DIntFormat.java109 if (inValue.isHighZ()) in formatToView()
117 if (inValue.isHighZ()) in formatToEdit()
177 if (inValue.isHighZ()) in formatToView()
180 return format(inValue); in formatToView()
185 if (inValue.isHighZ()) in formatToEdit()
188 return format(inValue); in formatToEdit()
431 if (inValue.isHighZ()) in formatToView()
433 return format(inValue); in formatToView()
438 if (inValue.isHighZ()) in formatToEdit()
482 if (inValue.isHighZ()) in formatToView()
[all …]
/dports/misc/cloc/cloc-1.90/tests/inputs/
H A DTypeScript.ts19 static encode(inValue: number) {
20 if (inValue < 64) {
23 throw TypeError(inValue + ": not a 64 based value");
36 static encode(inValue: number) {
42 if (inValue < 0) {
43 inValue = ((-inValue) << 1) + 1;
46 inValue = inValue << 1;
52 var currentDigit = inValue & 31; // 11111
53 inValue = inValue >> 5;
54 if (inValue > 0) {
[all …]
/dports/devel/open-beagle/beagle-3.0.3/beagle/include/beagle/
H A Dmacros.hpp146 return ((inValue == inValue) == false);
167 return ((inValue == lInfinity) || (inValue == -lInfinity));
180 return ((isNaN<T>(inValue) == false) && (isInfinity(inValue) == false));
223 inline T pow2Of(const T& inValue)
225 return (inValue * inValue);
238 return (inValue<0) ? -inValue : inValue;
251 return std::fabs(inValue);
264 return std::fabs(inValue);
277 return std::labs(inValue);
290 return std::abs(inValue);
[all …]
/dports/devel/open-beagle/beagle-3.0.3/PACC/XML/
H A DStreamer.hpp105 insertAttribute(inName, inValue.c_str()); in insertAttribute()
118 mStream << inName << "=\"" << inValue << "\""; in insertAttribute()
159 insertAttribute(inAttName, inValue); in insertPrimitiveTag()
170 void setAttributeIndentation(bool inValue) {mIndentAttributes = inValue;} in setAttributeIndentation() argument
173 void setPrecision(unsigned int inValue) {mStream.precision(inValue);} in setPrecision() argument
176 Streamer& operator<<(int inValue) { in operator <<() argument
177 insertPrimitiveTag(inValue, "Integer"); in operator <<()
182 Streamer& operator<<(double inValue) { in operator <<() argument
183 insertPrimitiveTag(inValue, "Float"); in operator <<()
188 Streamer& operator<<(const string& inValue) { in operator <<() argument
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/mhenderson-so/azure-ea-billing/vendor/github.com/gocarina/gocsv/
H A Dtypes.go65 switch inValue.Kind() {
69 b := inValue.Bool()
89 switch inValue.Kind() {
91 s := inValue.String()
103 i := inValue.Int()
109 i := inValue.Uint()
115 f := inValue.Float()
127 switch inValue.Kind() {
135 if inValue.Bool() {
169 if inValue.Bool() {
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/gocarina/gocsv/
H A Dtypes.go52 switch inValue.Kind() {
56 b := inValue.Bool()
76 switch inValue.Kind() {
78 s := inValue.String()
90 i := inValue.Int()
96 i := inValue.Uint()
102 f := inValue.Float()
114 switch inValue.Kind() {
122 if inValue.Bool() {
156 if inValue.Bool() {
[all …]
/dports/audio/ardour6/Ardour-6.8.0/libs/appleutility/CoreAudio105/
H A DCACFDictionary.cpp303 CACFNumber theValue(inValue); in AddSInt32()
316 CACFNumber theValue(inValue); in AddUInt32()
329 CACFNumber theValue(inValue); in AddSInt64()
342 CACFNumber theValue(inValue); in AddUInt64()
355 CACFNumber theValue(inValue); in AddFloat32()
368 CACFNumber theValue(inValue); in AddFloat64()
381 theAnswer = AddCFType(inKey, inValue); in AddNumber()
393 theAnswer = AddCFType(inKey, inValue); in AddString()
405 theAnswer = AddCFType(inKey, inValue); in AddArray()
417 theAnswer = AddCFType(inKey, inValue); in AddDictionary()
[all …]
H A DCACFNumber.h66 …CACFNumber(SInt32 inValue) : mCFNumber(CFNumberCreate(NULL, kCFNumberSInt32Type, &inValue)), mWill… in CACFNumber() argument
67 …CACFNumber(UInt32 inValue) : mCFNumber(CFNumberCreate(NULL, kCFNumberSInt32Type, &inValue)), mWill… in CACFNumber() argument
68 …CACFNumber(SInt64 inValue) : mCFNumber(CFNumberCreate(NULL, kCFNumberSInt64Type, &inValue)), mWill… in CACFNumber() argument
69 …CACFNumber(UInt64 inValue) : mCFNumber(CFNumberCreate(NULL, kCFNumberSInt64Type, &inValue)), mWill… in CACFNumber() argument
70 …CACFNumber(Float32 inValue) : mCFNumber(CFNumberCreate(NULL, kCFNumberFloat32Type, &inValue)), mWi… in CACFNumber() argument
71 …CACFNumber(Float64 inValue) : mCFNumber(CFNumberCreate(NULL, kCFNumberFloat64Type, &inValue)), mWi… in CACFNumber() argument
/dports/devel/open-beagle/beagle-3.0.3/PACC/SVG/
H A DStyles.hpp82 Attribute(const string& inName, const string& inValue) : pair<string, string>(inName, inValue) {} in Attribute() argument
131 Opacity(float inValue) : Attribute("opacity", String::convert(inValue)) {} in Opacity() argument
143 Fill(const Color &inValue) : Attribute("fill", inValue) {} in Fill() argument
223 StrokeOpacity(float inValue) : Attribute("stroke-opacity", String::convert(inValue)) {} in StrokeOpacity() argument
234 StrokeWidth(float inValue) : Attribute("stroke-width", String::convert(inValue)) {} in StrokeWidth() argument
290 StrokeLineCap(const std::string &inValue) : Attribute("stroke-linecap", inValue) {} in StrokeLineCap() argument
311 StrokeLineJoin(const std::string &inValue) : Attribute("stroke-linejoin", inValue) {} in StrokeLineJoin() argument
388 FontSize(float inValue) : Attribute("font-size", String::convert(inValue)) {} in FontSize() argument
413 TextAnchor(const std::string &inValue) : Attribute("text-anchor", inValue) {} in TextAnchor() argument
/dports/audio/ardour6/Ardour-6.8.0/libs/appleutility/CoreAudio/PublicUtility/
H A DCACFDictionary.cpp469 CACFBoolean theValue(inValue); in AddBool()
475 CACFNumber theValue(inValue); in AddSInt32()
481 CACFNumber theValue(inValue); in AddUInt32()
487 CACFNumber theValue(inValue); in AddSInt64()
493 CACFNumber theValue(inValue); in AddUInt64()
499 CACFNumber theValue(inValue); in AddFloat32()
505 CACFNumber theValue(inValue); in AddFloat64()
511 return AddCFType(inKey, inValue); in AddNumber()
516 return AddCFType(inKey, inValue); in AddString()
559 if (inValue) in AddCString()
[all …]
H A DCABool.h72 CABool(bool inValue) : mValue(inValue ? 1 : 0) {} in CABool() argument
73 CABool(const CABool& inValue) : mValue(inValue.mValue) {} in CABool() argument
76 CABool& operator=(bool inValue) { mValue = inValue; return *this; }
77 CABool& operator=(const CABool& inValue) { mValue = inValue.mValue; return *this; }
/dports/devel/bit/bit-1.1.2/vendor/github.com/thoas/go-funk/
H A Dpresence.go110 inValue := reflect.ValueOf(in)
114 inType := inValue.Type()
121 for i := 0; i < inValue.Len(); i++ {
122 if equal(inValue.Index(i).Interface(), elem) {
134 inValue := reflect.ValueOf(in)
138 inType := inValue.Type()
145 length := inValue.Len()
159 inValue := reflect.ValueOf(in)
161 inType := inValue.Type()
167 for _, key := range inValue.MapKeys() {
[all …]
/dports/x11-toolkits/qt5-quick3d/kde-qtquick3d-5.15.2p19/src/runtimerender/
H A Dqssgrenderdynamicobjectsystemutil_p.h53 constexpr inline quint32 align(quint32 inValue) Q_DECL_NOTHROW in align() argument
55 return (inValue % 4) ? (inValue + (4 - (inValue % 4))) : inValue; in align()
58 constexpr inline quint32 align8(quint32 inValue) Q_DECL_NOTHROW in align8() argument
60 return (inValue % 8) ? (inValue + (8 - (inValue % 8))) : inValue; in align8()

12345678910>>...31