HomeSort by relevance Sort by last modified time
    Searched refs:identity (Results 326 - 350 of 687) sorted by null

<<11121314151617181920>>

  /external/boringssl/src/ssl/
s3_clnt.c 1600 char identity[PSK_MAX_IDENTITY_LEN + 1]; local
    [all...]
  /external/v8/tools/gyp/pylib/gyp/
xcode_emulation.py     [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
FreshValueGenerator.java 229 private final int identity = freshInt(); field in class:FreshValueGenerator.FreshInvocationHandler
241 return identity;
247 return identity == that.identity;
253 return paramString(interfaceType, identity);
  /external/mesa3d/src/mesa/tnl/
t_vertex_sse.c 63 struct x86_reg identity; member in struct:x86_program
70 return p->identity;
101 /* Initialize from identity, then pull in low two words:
111 /* Pull in low word, then swizzle in identity */
395 sse_movups(&p->func, p->identity, x86_make_disp(vtxESI, get_offset(vtx, &vtx->identity[0])));
658 p.identity = x86_make_reg(file_XMM, 6);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
  /external/mesa3d/src/gallium/state_trackers/vega/
matrix.h 101 static const VGfloat identity[9] = {1.f, 0.f, 0.f, local
104 memcpy(matrix->m, identity, sizeof(identity));
  /external/v8/benchmarks/
richards.js 121 * @param {int} id the identity of the task
132 * @param {int} id the identity of the task
142 * @param {int} id the identity of the task
152 * @param {int} id the identity of the task
162 * @param {int} id the identity of the task
174 * @param {int} id the identity of the task
  /external/v8/test/cctest/
test-global-handles.cc 435 int identity; local
440 identity = o->GetIdentityHash();
450 CHECK_EQ(identity, o->GetIdentityHash());
  /external/wpa_supplicant_8/hs20/server/
spp_server.c 287 "WHERE identity=%Q AND realm=%Q AND phase2=1",
388 field, dmacc ? "osu_user" : "identity",
418 field, val, dmacc ? "osu_user" : "identity", user,
482 pw, dmacc ? "osu_user" : "identity",
691 real_user = db_get_val(ctx, user, realm, "identity", dmacc);
693 debug_print(ctx, 1, "Could not find user identity for "
899 char *type, *identity; local
903 identity = db_get_val(ctx, user, realm, "identity", dmacc);
904 if (identity == NULL || strlen(identity) == 0)
1015 char *identity; local
    [all...]
  /external/opencv3/modules/core/src/cuda/
gpu_mat.cu 263 gridTransformUnary_< CopyToPolicy<sizeof(typename VecTraits<T>::elem_type)> >(globPtr<T>(src), globPtr<T>(dst), identity<T>(), globPtr<uchar>(mask), stream);
321 gridTransformUnary(constantPtr(VecTraits<T>::make(scalar.val), mat.rows, mat.cols), globPtr<T>(mat), identity<T>(), stream);
328 gridTransformUnary(constantPtr(VecTraits<T>::make(scalar.val), mat.rows, mat.cols), globPtr<T>(mat), identity<T>(), globPtr<uchar>(mask), stream);
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java 463 final long identity = Binder.clearCallingIdentity(); local
501 Binder.restoreCallingIdentity(identity);
535 final long identity = Binder.clearCallingIdentity(); local
551 Binder.restoreCallingIdentity(identity);
588 final long identity = Binder.clearCallingIdentity(); local
622 Binder.restoreCallingIdentity(identity);
975 final long identity = Binder.clearCallingIdentity(); local
2412 final long identity = Binder.clearCallingIdentity(); local
2485 final long identity = Binder.clearCallingIdentity(); local
2515 final long identity = Binder.clearCallingIdentity(); local
3293 final long identity = Binder.clearCallingIdentity(); local
3313 final long identity = Binder.clearCallingIdentity(); local
3485 final long identity = Binder.clearCallingIdentity(); local
3495 final long identity = Binder.clearCallingIdentity(); local
3614 final long identity = Binder.clearCallingIdentity(); local
3650 final long identity = Binder.clearCallingIdentity(); local
    [all...]
  /cts/tests/openglperf2/jni/graphics/
Matrix.cpp 24 identity();
54 void Matrix::identity() { function in class:Matrix
  /external/icu/icu4c/source/samples/layout/
GDIFontInstance.cpp 369 MAT2 identity = {{0, 1}, {0, 0}, {0, 0}, {0, 1}}; local
374 result = GetGlyphOutline(hdc, glyph, GGO_GLYPH_INDEX | GGO_METRICS, &metrics, 0, NULL, &identity);
  /external/skia/src/ports/
SkFontConfigInterface_direct.cpp 534 SkStreamAsset* SkFontConfigInterfaceDirect::openStream(const FontIdentity& identity) {
535 return SkStream::NewFromFile(identity.fString.c_str());
  /external/skia/tests/
ImageFilterTest.cpp 1234 uint8_t allOne[256], identity[256]; local
    [all...]
  /external/v8/test/webkit/fast/regex/
toString.js 51 // These strings are equivalent, since the '\' is identity escaping the '/' at the string level.
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SMSDispatcher.java 443 final long identity = Binder.clearCallingIdentity(); local
448 Binder.restoreCallingIdentity(identity);
577 final long identity = Binder.clearCallingIdentity(); local
587 Binder.restoreCallingIdentity(identity);
1396 final long identity = Binder.clearCallingIdentity(); local
1442 final long identity = Binder.clearCallingIdentity(); local
    [all...]
UiccSmsController.java 271 final long identity = Binder.clearCallingIdentity(); local
275 Binder.restoreCallingIdentity(identity);
  /libcore/ojluni/src/main/java/java/util/stream/
DoublePipeline.java 460 public final double reduce(double identity, DoubleBinaryOperator op) {
461 return evaluate(ReduceOps.makeDouble(identity, op));
LongPipeline.java 438 public final long reduce(long identity, LongBinaryOperator op) {
439 return evaluate(ReduceOps.makeLong(identity, op));
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
StreamBuilderTest.java 86 stream(s -> s.map(LambdaTestHelpers.identity())).
130 stream(s -> s.map(LambdaTestHelpers.identity())).
  /packages/services/Mms/src/com/android/mms/service/
SendRequest.java 162 final long identity = Binder.clearCallingIdentity(); local
228 Binder.restoreCallingIdentity(identity);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_scope.py 112 def identity(x): function in function:ScopeTests.testMixedFreevarsAndCellvars
121 return identity(z * (b + y))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_scope.py 112 def identity(x): function in function:ScopeTests.testMixedFreevarsAndCellvars
121 return identity(z * (b + y))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_scope.py 112 def identity(x): function in function:ScopeTests.testMixedFreevarsAndCellvars
121 return identity(z * (b + y))

Completed in 1853 milliseconds

<<11121314151617181920>>