Searched refs:value1 (Results 1 - 25 of 70) sorted by relevance

123

/macosx-10.10.1/ruby-106/ruby/test/cgi/
H A Dtest_cgi_session.rb27 value1="value1"
33 session["key1"]=value1
35 assert_equal(value1,session["key1"])
52 assert_equal(value1,session["key1"])
65 value1="value1"
71 session["key1"]=value1
73 assert_equal(value1,session["key1"])
90 assert_equal(value1,sessio
[all...]
/macosx-10.10.1/bootp-298/bootplib/
H A DNICache.h43 void * value1; member in struct:PLCacheEntry
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/examples/controlwidget/
H A Ddemo-voltmeter.tcl15 ::controlwidget::voltmeter .t1 -variable value1 -labels { 0 50 100 } -title "Voltmeter (V)"
16 scale .s1 -command "set ::value1" -variable value1
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DTimelineDataGrid.js325 var value1 = node1.data[sortColumnIdentifier]; variable
328 if (typeof value1 === "number" && typeof value2 === "number") {
329 if (isNaN(value1) && isNaN(value2))
331 if (isNaN(value1))
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) {
343 value1 = value1
[all...]
/macosx-10.10.1/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, ALin
[all...]
/macosx-10.10.1/IOKitUser-1050.1.21/IOServiceAuthorizeAgent/storage/
H A Dstorage.m119 CFTypeRef value1;
123 value1 = CFDictionaryGetValue( identifier1, kDADiskDescriptionVolumeUUIDKey );
126 if ( value1 && value2 == 0 )
130 else if ( value1 == 0 && value2 )
136 value1 = CFDictionaryGetValue( identifier1, kDADiskDescriptionVolumeNameKey );
139 if ( value1 && value2 == 0 )
143 else if ( value1 == 0 && value2 )
149 value1 = CFDictionaryGetValue( identifier1, kDADiskDescriptionMediaSizeKey );
152 compare = CFNumberCompare( value2, value1, 0 );
156 value1
[all...]
/macosx-10.10.1/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.cpp67 auto_ptr<DbValue> value1(metaAttribute.createValue(*key1, valueOffset1));
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))
95 auto_ptr<DbValue> value1(metaAttribute.createValue(mKeySection.subsection(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.1/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.cpp67 auto_ptr<DbValue> value1(metaAttribute.createValue(*key1, valueOffset1));
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))
95 auto_ptr<DbValue> value1(metaAttribute.createValue(mKeySection.subsection(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.1/ruby-106/ruby/test/openssl/
H A Dtest_pkcs5.rb92 value1 = OpenSSL::PKCS5.pbkdf2_hmac(p, s, c, dk_len, digest)
94 assert_equal(value1, value2)
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dapachestyle.vim15 " Option value1 value2
16 " Option = value1 value2 #not apache but also allowed
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsfont.py10 def matrixEquals(self, value1, value2):
11 self.assertEquals(len(value1), len(value2))
12 for v1, v2 in zip(value1, value2):
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsfont.py10 def matrixEquals(self, value1, value2):
11 self.assertEqual(len(value1), len(value2))
12 for v1, v2 in zip(value1, value2):
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_nsfont.py21 def matrixEquals(self, value1, value2):
22 self.assertEqual(len(value1), len(value2))
23 for v1, v2 in zip(value1, value2):
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dprime.rb222 while (value1, mod = value.divmod(prime)
224 value = value1
230 break if value1 <= prime
/macosx-10.10.1/JavaScriptCore-7600.1.17/ftl/
H A DFTLAbbreviations.h167 static inline void addIncoming(LValue phi, ValueFromBlock value1) argument
169 LValue value = value1.value();
170 LBasicBlock block = value1.block();
173 static inline void addIncoming(LValue phi, ValueFromBlock value1, ValueFromBlock value2) argument
175 LValue values[] = { value1.value(), value2.value() };
176 LBasicBlock blocks[] = { value1.block(), value2.block() };
179 static inline LValue buildPhi(LBuilder builder, LType type, ValueFromBlock value1) argument
182 addIncoming(result, value1);
186 LBuilder builder, LType type, ValueFromBlock value1, ValueFromBlock value2)
189 addIncoming(result, value1, value
185 buildPhi( LBuilder builder, LType type, ValueFromBlock value1, ValueFromBlock value2) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dputiltst.c52 double value1 = 0.021; local
57 y1 = uprv_modf(value1, &n1);
65 log_verbose("[float] x = %f n = %f y = %f\n", value1, n1, y1);
72 expn1=uprv_ceil(value1);
76 expn1=uprv_floor(value1);
131 doAssert(uprv_digitsAfterDecimal(value1), 3, "uprv_digitsAfterDecimal() failed.");
/macosx-10.10.1/Security-57031.1.35/Security/authd/
H A Dauthtoken.c16 static Boolean AuthTokenEqualCallBack(const void *value1, const void *value2) argument
18 return (*(uint64_t*)value1) == (*(uint64_t*)value2);
93 _auth_token_equal(CFTypeRef value1, CFTypeRef value2) argument
95 auth_token_t auth1 = (auth_token_t)value1;
H A Dcredential.c71 _credential_equal(CFTypeRef value1, CFTypeRef value2) argument
73 credential_t cred1 = (credential_t)value1;
H A Dmechanism.c52 _mechanism_equal(CFTypeRef value1, CFTypeRef value2) argument
54 mechanism_t mech1 = (mechanism_t)value1;
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/math/
H A Dstatistics.tcl241 foreach value1 $data1 value2 $data2 {
242 if { $value1 == {} || $value2 == {} } {
245 set value1 [expr {double($value1)}]
248 set sum1 [expr {$sum1+$value1}]
250 set sumsq1 [expr {$sumsq1+$value1*$value1}]
252 set sumprod [expr {$sumprod+$value1*$value2}]
745 set value1 [lindex $data1 $idx]
747 if { $value1 !
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/SecureObjectSync/
H A DSOSPeerInfoCollections.c44 static Boolean SOSPeerInfoIDEqual(const void *value1, const void *value2) argument
46 SOSPeerInfoRef peer1 = (SOSPeerInfoRef) value1;
/macosx-10.10.1/JavaScriptCore-7600.1.17/assembler/
H A DMacroAssembler.h1171 and64(key.value1, dest);
1242 : value1(v1)
1246 TrustedImm32 value1; member in struct:JSC::MacroAssembler::BlindedImm32
1309 move(constant.value1, dest);
1317 add32(key.value1, dest);
1327 addPtr(key.value1, dest);
1337 and32(key.value1, dest);
1347 andPtr(key.value1, dest);
1387 or32(key.value1, dest);
1415 store32(blind.value1, des
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dtask_policy.c127 static void proc_set_task_policy2_locked(task_t task, thread_t thread, int category, int flavor, int value1, int value2);
526 int value1, value2; local
528 proc_get_task_policy2(task, THREAD_NULL, TASK_POLICY_ATTRIBUTE, TASK_POLICY_BASE_LATENCY_AND_THROUGHPUT_QOS, &value1, &value2);
530 info->task_latency_qos_tier = qos_latency_policy_package(value1);
534 int value1, value2; local
536 proc_get_task_policy2(task, THREAD_NULL, TASK_POLICY_ATTRIBUTE, TASK_POLICY_OVERRIDE_LATENCY_AND_THROUGHPUT_QOS, &value1, &value2);
538 info->task_latency_qos_tier = qos_latency_policy_package(value1);
1448 proc_set_task_policy2(task_t task, thread_t thread, int category, int flavor, int value1, int value2) argument
1456 targetid(task, thread), trequested_0(task, thread), trequested_1(task, thread), value1, 0);
1458 proc_set_task_policy2_locked(task, thread, category, flavor, value1, value
1606 proc_set_task_policy2_locked(task_t task, thread_t thread, int category, int flavor, int value1, int value2) argument
1735 proc_get_task_policy2(task_t task, thread_t thread, int category __unused, int flavor, int *value1, int *value2) argument
[all...]

Completed in 340 milliseconds

123