Searched refs:value2 (Results 1 - 25 of 93) sorted by relevance

1234

/macosx-10.10/ruby-106/ruby/test/cgi/
H A Dtest_cgi_session.rb28 value2="\x8F\xBC\x8D]"
29 value2.force_encoding("SJIS") if defined?(::Encoding)
34 session["key2"]=value2
36 assert_equal(value2,session["key2"])
53 assert_equal(value2,session["key2"])
66 value2="\x8F\xBC\x8D]"
67 value2.force_encoding("SJIS") if defined?(::Encoding)
72 session["key2"]=value2
74 assert_equal(value2,session["key2"])
91 assert_equal(value2,sessio
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DBiquadDSPKernel.cpp48 double value2; local
54 value2 = biquadProcessor()->parameter2()->finalValue();
59 value2 = biquadProcessor()->parameter2()->smoothedValue();
64 value2 = biquadProcessor()->parameter2()->value();
80 m_biquad.setLowpassParams(normalizedFrequency, value2);
84 m_biquad.setHighpassParams(normalizedFrequency, value2);
88 m_biquad.setBandpassParams(normalizedFrequency, value2);
100 m_biquad.setPeakingParams(normalizedFrequency, value2, gain);
104 m_biquad.setNotchParams(normalizedFrequency, value2);
108 m_biquad.setAllpassParams(normalizedFrequency, value2);
[all...]
H A DAudioParamTimeline.cpp202 float value2 = nextEvent ? nextEvent->value() : value1;
219 value = (1 - x) * value1 + x * value2;
224 if (value1 <= 0 || value2 <= 0) {
230 // The value goes exponentially from value1 to value2 in a duration of deltaTime seconds (corresponding to numSampleFrames).
232 float multiplier = powf(value2 / value1, 1 / numSampleFrames);
237 value = value1 * powf(value2 / value1,
H A DWaveShaperDSPKernel.cpp119 double value2 = curveData[index2]; local
121 double output = (1.0 - interpolationFactor) * value1 + interpolationFactor * value2;
/macosx-10.10/bootp-298/bootplib/
H A DNICache.h44 void * value2; member in struct:PLCacheEntry
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/controlwidget/
H A Ddemo-voltmeter.tcl18 ::controlwidget::voltmeter .t2 -variable value2 -labels { 0 {} 2.5 {} 5 } \
21 scale .s2 -command "set ::value2" -variable value2
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DTimelineDataGrid.js326 var value2 = node2.data[sortColumnIdentifier]; variable
328 if (typeof value1 === "number" && typeof value2 === "number") {
329 if (isNaN(value1) && isNaN(value2))
333 if (isNaN(value2))
335 return (value1 - value2) * sortDirection;
338 if (typeof value1 === "string" && typeof value2 === "string")
339 return value1.localeCompare(value2) * sortDirection;
341 if (value1 instanceof WebInspector.CallFrame || value2 instanceof WebInspector.CallFrame) {
344 value2 = value2
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dtrie2test.c114 uint32_t value, value2; local
133 value2=UTRIE2_GET16_FROM_U16_SINGLE_LEAD(trie, start);
135 value2=UTRIE2_GET32_FROM_U16_SINGLE_LEAD(trie, start);
137 if(value!=value2) {
139 typeName, testName, (long)start, (long)value2, (long)value);
144 value2=UTRIE2_GET16_FROM_SUPP(trie, start);
146 value2=UTRIE2_GET32_FROM_SUPP(trie, start);
148 if(value!=value2) {
150 typeName, testName, (long)start, (long)value2, (long)value);
154 value2
489 uint32_t value, value2; local
733 uint32_t value, value2; local
1378 uint32_t value1, value2; local
1397 uint32_t value1, value2; local
[all...]
H A Dtrietest.c264 uint32_t value, value2; local
380 value2=UTRIE_GET32_FROM_BMP(&trie, start);
382 value2=UTRIE_GET16_FROM_BMP(&trie, start);
384 if(value!=value2) {
386 testName, start, value2, value);
390 value2=UTRIE_GET32_FROM_LEAD(&trie, start);
392 value2=UTRIE_GET16_FROM_LEAD(&trie, start);
394 if(value!=value2) {
396 testName, start, value2, value);
401 UTRIE_GET32(&trie, start, value2);
458 uint32_t value, value2; local
[all...]
/macosx-10.10/OpenAL-54/Source/OpenAL/al/
H A Dal.h432 AL_API void AL_APIENTRY alListener3f( ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
438 AL_API void AL_APIENTRY alListener3i( ALenum param, ALint value1, ALint value2, ALint value3 );
447 AL_API void AL_APIENTRY alGetListener3f( ALenum param, ALfloat *value1, ALfloat *value2, ALfloat *value3 );
453 AL_API void AL_APIENTRY alGetListener3i( ALenum param, ALint *value1, ALint *value2, ALint *value3 );
505 AL_API void AL_APIENTRY alSource3f( ALuint sid, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
511 AL_API void AL_APIENTRY alSource3i( ALuint sid, ALenum param, ALint value1, ALint value2, ALint value3 );
520 AL_API void AL_APIENTRY alGetSource3f( ALuint sid, ALenum param, ALfloat* value1, ALfloat* value2, ALfloat* value3);
526 AL_API void AL_APIENTRY alGetSource3i( ALuint sid, ALenum param, ALint* value1, ALint* value2, ALint* value3);
602 AL_API void AL_APIENTRY alBuffer3f( ALuint bid, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
608 AL_API void AL_APIENTRY alBuffer3i( ALuint bid, ALenum param, ALint value1, ALint value2, ALin
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSBasicShapes.h97 void updateShapeSize2Values(CSSPrimitiveValue* value1, CSSPrimitiveValue* value2) argument
99 updateShapeSize4Values(value1, value2, value1, value2);
102 void updateShapeSize3Values(CSSPrimitiveValue* value1, CSSPrimitiveValue* value2, CSSPrimitiveValue* value3) argument
104 updateShapeSize4Values(value1, value2, value3, value2);
/macosx-10.10/IOKitUser-1050.1.21/IOServiceAuthorizeAgent/storage/
H A Dstorage.m120 CFTypeRef value2;
124 value2 = CFDictionaryGetValue( identifier2, kDADiskDescriptionVolumeUUIDKey );
126 if ( value1 && value2 == 0 )
130 else if ( value1 == 0 && value2 )
137 value2 = CFDictionaryGetValue( identifier2, kDADiskDescriptionVolumeNameKey );
139 if ( value1 && value2 == 0 )
143 else if ( value1 == 0 && value2 )
150 value2 = CFDictionaryGetValue( identifier2, kDADiskDescriptionMediaSizeKey );
152 compare = CFNumberCompare( value2, value1, 0 );
157 value2
[all...]
/macosx-10.10/libxml2-26/libxml2/
H A Dpattern.c158 const xmlChar *value2; /* The namespace name */ member in struct:_xmlStepOp
249 if (op->value2 != NULL)
250 xmlFree((xmlChar *) op->value2);
340 * @value2: the second value
349 xmlPatOp op, xmlChar * value, xmlChar * value2)
365 comp->steps[comp->nbStep].value2 = value2;
389 tmp = comp->steps[i].value2;
390 comp->steps[i].value2 = comp->steps[j].value2;
347 xmlPatternAdd(xmlPatParserContextPtr ctxt ATTRIBUTE_UNUSED, xmlPatternPtr comp, xmlPatOp op, xmlChar * value, xmlChar * value2) argument
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dpattern.c155 const xmlChar *value2; /* The namespace name */ member in struct:_xmlStepOp
246 if (op->value2 != NULL)
247 xmlFree((xmlChar *) op->value2);
336 * @value2: the second value
345 xmlPatOp op, xmlChar * value, xmlChar * value2)
361 comp->steps[comp->nbStep].value2 = value2;
385 tmp = comp->steps[i].value2;
386 comp->steps[i].value2 = comp->steps[j].value2;
343 xmlPatternAdd(xmlPatParserContextPtr ctxt ATTRIBUTE_UNUSED, xmlPatternPtr comp, xmlPatOp op, xmlChar * value, xmlChar * value2) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_filedb/
H A DMetaAttribute.h68 virtual bool evaluate(const DbValue *value1, const DbValue *value2, CSSM_DB_OPERATOR op) const = 0;
149 bool evaluate(const DbValue *value1, const DbValue *value2, CSSM_DB_OPERATOR op) const argument
151 return (dynamic_cast<const T *>(value1))->evaluate(*dynamic_cast<const T *>(value2), op);
H A DDbIndex.cpp68 auto_ptr<DbValue> value2(metaAttribute.createValue(*key2, valueOffset2));
70 if (metaAttribute.evaluate(value1.get(), value2.get(), CSSM_DB_LESS_THAN))
73 else if (metaAttribute.evaluate(value2.get(), value1.get(), CSSM_DB_LESS_THAN))
97 auto_ptr<DbValue> value2(metaAttribute.createValue(other.mKeySection.subsection(other.mKeyRange),
100 if (metaAttribute.evaluate(value1.get(), value2.get(), CSSM_DB_LESS_THAN))
103 else if (metaAttribute.evaluate(value2.get(), value1.get(), CSSM_DB_LESS_THAN))
/macosx-10.10/Security-57031.1.35/Security/libsecurity_filedb/lib/
H A DMetaAttribute.h68 virtual bool evaluate(const DbValue *value1, const DbValue *value2, CSSM_DB_OPERATOR op) const = 0;
149 bool evaluate(const DbValue *value1, const DbValue *value2, CSSM_DB_OPERATOR op) const argument
151 return (dynamic_cast<const T *>(value1))->evaluate(*dynamic_cast<const T *>(value2), op);
H A DDbIndex.cpp68 auto_ptr<DbValue> value2(metaAttribute.createValue(*key2, valueOffset2));
70 if (metaAttribute.evaluate(value1.get(), value2.get(), CSSM_DB_LESS_THAN))
73 else if (metaAttribute.evaluate(value2.get(), value1.get(), CSSM_DB_LESS_THAN))
97 auto_ptr<DbValue> value2(metaAttribute.createValue(other.mKeySection.subsection(other.mKeyRange),
100 if (metaAttribute.evaluate(value1.get(), value2.get(), CSSM_DB_LESS_THAN))
103 else if (metaAttribute.evaluate(value2.get(), value1.get(), CSSM_DB_LESS_THAN))
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_pkcs5.rb93 value2 = OpenSSL::PKCS5.pbkdf2_hmac(p, s, c, dk_len, digest)
94 assert_equal(value1, value2)
/macosx-10.10/WebCore-7600.1.25/html/
H A DMediaFragmentURIParser.cpp299 int value2 = digits2.toInt(); local
315 value3 = value2;
316 value2 = value1;
323 time = (value1 * secondsPerHour) + (value2 * secondsPerMinute) + value3 + fraction;
/macosx-10.10/vim-55/runtime/syntax/
H A Dapachestyle.vim15 " Option value1 value2
16 " Option = value1 value2 #not apache but also allowed
/macosx-10.10/ruby-106/ruby/ext/psych/yaml/
H A Dreader.c194 unsigned int value = 0, value2 = 0; local
375 value2 = parser->raw_buffer.pointer[low+2]
380 if ((value2 & 0xFC00) != 0xDC00)
383 parser->offset+2, value2);
387 value = 0x10000 + ((value & 0x3FF) << 10) + (value2 & 0x3FF);
/macosx-10.10/libxslt-13/libxslt/libxslt/
H A Dpattern.c89 xmlChar *value2; member in struct:_xsltStepOp
191 if (op->value2 != NULL)
192 xmlFree(op->value2);
286 * @value2: the second value
295 xsltOp op, xmlChar * value, xmlChar * value2, int novar)
309 if (value2)
310 xmlFree(value2);
318 comp->steps[comp->nbStep].value2 = value2;
382 tmp = comp->steps[i].value2;
294 xsltCompMatchAdd(xsltParserContextPtr ctxt, xsltCompMatchPtr comp, xsltOp op, xmlChar * value, xmlChar * value2, int novar) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/html/track/
H A DWebVTTParser.cpp494 int value2; local
495 if (!input.scan(':') || input.scanDigits(value2) != 2)
504 value3 = value2;
505 value2 = value1;
513 if (value2 > 59 || value3 > 59)
517 timeStamp = (value1 * secondsPerHour) + (value2 * secondsPerMinute) + value3 + (value4 * secondsPerMillisecond);
/macosx-10.10/WebCore-7600.1.25/svg/properties/
H A DSVGAnimatedPropertyMacros.h52 SVGSynchronizableAnimatedProperty(const ConstructorParameter1& value1, const ConstructorParameter2& value2) argument
53 : value(value1, value2)

Completed in 304 milliseconds

1234