Searched defs:identity (Results 1 - 25 of 236) sorted by path

12345678910

/external/ImageMagick/MagickCore/
H A Dannotate.c1861 identity;
1905 identity=(fabs(draw_info->affine.sx-draw_info->affine.sy) < MagickEpsilon) &&
1922 (void) FormatLocaleFile(file,"%g %g moveto\n",identity != MagickFalse ? 0.0 :
1938 if (identity == MagickFalse)
1977 if (identity == MagickFalse)
1849 identity; local
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java51 /** The identity of the root node. */
120 /** The document identity number(s). If we have overflowed the addressing
124 /** The mask for the identity.
160 * @param dtmIdentity The DTM identity ID for this DTM.
180 * @param dtmIdentity The DTM identity ID for this DTM.
315 * @param identity The node identity index.
317 protected void indexNode(int expandedTypeID, int identity) argument
332 index[index[0]] = identity;
349 * to the identity argumen
420 getNextNodeIdentity(int identity) argument
459 _type(int identity) argument
477 _exptype(int identity) argument
500 _level(int identity) argument
522 _firstch(int identity) argument
555 _nextsib(int identity) argument
587 _prevsib(int identity) argument
614 _parent(int identity) argument
1072 getFirstAttributeIdentity(int identity) argument
1230 getNextAttributeIdentity(int identity) argument
[all...]
H A DDTMDefaultBaseIterators.java43 * @param dtmIdentity The DTM identity ID for this DTM.
65 * @param dtmIdentity The DTM identity ID for this DTM.
1085 * The node identity of _startNode for this iterator
1254 /* _currentNode precedes candidates. This is the identity, not the handle! */
1849 * Tell if this node identity is a descendant. Assumes that
1859 * @param identity The index number of the node in question.
1862 protected boolean isDescendant(int identity) argument
1864 return (_parent(identity) >= _startNode) || (_startNode == identity);
H A DDTMDefaultBaseTraversers.java37 * identity indices within their logic, for efficiency's sake. Be very
48 * @param dtmIdentity The DTM identity ID for this DTM.
70 * @param dtmIdentity The DTM identity ID for this DTM.
339 * @param axisRoot The root identity of the axis.
431 int identity = makeNodeIdentity(context);
433 int firstMatch = getNextIndexed(identity, _firstch(identity),
519 * @param axisRoot The root identity of the axis.
520 * @param identity The node in question.
524 protected abstract boolean isAfterAxis(int axisRoot, int identity); argument
591 getFirstPotential(int identity) argument
634 isDescendant(int subtreeRootIdentity, int identity) argument
649 isAfterAxis(int axisRoot, int identity) argument
771 getFirstPotential(int identity) argument
1615 getFirstPotential(int identity) argument
1687 getFirstPotential(int identity) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java111 * @param dtmIdentity The DTM identity ID for this DTM.
180 * @return The index identity of the node that was added.
607 int identity = makeNodeIdentity(nodeHandle);
609 return (Node) m_nodes.elementAt(identity);
613 * Get a Node from an identity index.
625 * Get the next node identity value in the list, and call the iterator
628 * @param identity The node identity (index).
629 * @return identity+1, or DTM.NULL.
631 protected int getNextNodeIdentity(int identity) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java211 * @param dtmIdentity The DTM identity ID for this DTM.
234 * @param dtmIdentity The DTM identity ID for this DTM.
303 * Get the data or qualified name for the given node identity.
305 * @param identity The node identity.
309 protected int _dataOrQName(int identity) argument
312 if (identity < m_size)
313 return m_dataOrQName.elementAt(identity);
324 else if (identity < m_size)
325 return m_dataOrQName.elementAt(identity);
709 getNextNodeIdentity(int identity) argument
[all...]
H A DSAX2DTM2.java616 * The node identity of _startNode for this iterator
813 /* _currentNode precedes candidates. This is the identity, not the handle! */
1544 * Tell if this node identity is a descendant. Assumes that
1554 * @param identity The index number of the node in question.
1557 protected final boolean isDescendant(int identity) argument
1559 return (_parent2(identity) >= _startNode) || (_startNode == identity);
1901 public final int _exptype(int identity) argument
1903 return m_exptype.elementAt(identity);
1919 * @param identity
1922 _exptype2(int identity) argument
1938 _nextsib2(int identity) argument
1954 _firstch2(int identity) argument
1970 _parent2(int identity) argument
1986 _type2(int identity) argument
2521 getFirstAttributeIdentity(int identity) argument
2563 getNextAttributeIdentity(int identity) argument
[all...]
/external/boringssl/src/ssl/
H A Dhandshake_client.c1217 /* Store PSK identity hint for later use, hint is used in
1219 * identity hint can be as long as the maximum length of a PSK identity.
1223 * a specific identity. */
1231 /* Save non-empty identity hints as a C string. Empty identity hints we
1562 char identity[PSK_MAX_IDENTITY_LEN + 1]; local
1563 OPENSSL_memset(identity, 0, sizeof(identity));
1565 ssl->psk_client_callback(ssl, hs->peer_psk_identity_hint, identity,
[all...]
H A Dssl_lib.c2174 SSL *ssl, unsigned (*cb)(SSL *ssl, const char *hint, char *identity,
2181 SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *hint, char *identity,
2188 SSL *ssl, unsigned (*cb)(SSL *ssl, const char *identity, uint8_t *psk,
2194 SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *identity,
2173 SSL_set_psk_client_callback( SSL *ssl, unsigned (*cb)(SSL *ssl, const char *hint, char *identity, unsigned max_identity_len, uint8_t *psk, unsigned max_psk_len)) argument
2180 SSL_CTX_set_psk_client_callback( SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *hint, char *identity, unsigned max_identity_len, uint8_t *psk, unsigned max_psk_len)) argument
2187 SSL_set_psk_server_callback( SSL *ssl, unsigned (*cb)(SSL *ssl, const char *identity, uint8_t *psk, unsigned max_psk_len)) argument
2193 SSL_CTX_set_psk_server_callback( SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *identity, uint8_t *psk, unsigned max_psk_len)) argument
H A Dt1_lib.c1922 CBB contents, identity, ticket, binders, binder; local
1925 !CBB_add_u16_length_prefixed(&contents, &identity) ||
1926 !CBB_add_u16_length_prefixed(&identity, &ticket) ||
1929 !CBB_add_u32(&identity, obfuscated_ticket_age) ||
1951 /* We only advertise one PSK identity, so the only legal index is zero. */
1964 /* We only process the first PSK identity since we don't support pure PSK. */
2025 /* We only consider the first identity for resumption */
/external/boringssl/src/ssl/test/
H A Dbssl_shim.cc792 // Account for the trailing '\0' for the identity.
805 static unsigned PskServerCallback(SSL *ssl, const char *identity, argument
809 if (strcmp(identity, config->psk_identity.c_str()) != 0) {
810 fprintf(stderr, "Client PSK identity did not match.\n");
/external/clang/test/CXX/over/over.match/over.match.best/over.best.ics/over.ics.user/
H A Dp3-0x.cpp4 template<typename T> struct identity struct in namespace:PR6285
9 operator typename identity<T>::type(); // expected-note{{candidate}}
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp4.cpp7 struct identity { struct
165 extract_nested_types<identity<int>, identity<float> >::types *t_int_float_2
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp4.cpp5 template<class T> struct identity { typedef T type; }; struct in namespace:PR8598
8 void f(T C::*, typename identity<T>::type*){} argument
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
H A Dp11.cpp11 struct identity { struct
16 T* f2(int, typename identity<T>::type = 0);
18 T& f2(U, typename identity<T>::type = 0);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dexamples.cpp4 template<typename T> struct identity { typedef T type; }; struct in namespace:PR5907
6 identity<A>::type::A() { }
/external/clang/test/CodeGenCXX/
H A Dmangle-variadic-templates.cpp6 template<typename T> struct identity { using type = T; }; struct
55 template<typename R, typename ...ArgTypes> identity<R(ArgTypes...)> f5() {}
57 template identity<int(int, float, double)> f5();
68 template template_tuple<identity, add_reference> f7();
72 template void f8<int, identity<int>, identity<float>>(int (&)[6]);
/external/clang/test/SemaTemplate/
H A Daddress-spaces.cpp63 template<typename T> struct identity {}; struct
66 identity<T> accept_arg_in_address_space_1(__attribute__((address_space(1))) T &ir1);
69 identity<T> accept_any_arg(T &ir1);
73 identity<int> ii = accept_arg_in_address_space_1(int_1);
74 identity<int __attribute__((address_space(1)))> ii2 = accept_any_arg(int_1);
H A Dinstantiate-method.cpp11 int identity(int x) { return x; } function
16 xf->f(&identity);
17 xf->g(identity);
19 X<int(int)>::h(identity, &identity);
H A Dtemp_arg_template.cpp84 struct identity {}; struct
93 struct S : public template_tuple<identity, identity> {
99 f7<identity>();
/external/compiler-rt/lib/interception/tests/
H A Dinterception_win_test.cc287 IdentityFunction identity = (IdentityFunction)identity_address; local
291 EXPECT_EQ(0, identity(0));
292 EXPECT_EQ(42, identity(42));
311 EXPECT_EQ(0, identity(0));
312 EXPECT_EQ(42, identity(42));
/external/conscrypt/common/src/jni/main/cpp/
H A DNativeCrypto.cpp5651 char *identity, unsigned int max_identity_len,
5677 JNI_TRACE("ssl=%p psk_client_callback failed to allocate identity bufffer", ssl);
5707 JNI_TRACE("ssl=%p psk_client_callback failed to get identity bytes", ssl);
5710 memcpy(identity, identityJavaRo.get(), max_identity_len);
5719 static unsigned int psk_server_callback(SSL* ssl, const char *identity, argument
5744 env, (identity != nullptr) ? env->NewStringUTF(identity) : nullptr);
6497 Errors::throwSSLExceptionWithSslErrors(env, ssl, sslErrorCode, "Failed to set PSK identity hint");
5650 psk_client_callback(SSL* ssl, const char *hint, char *identity, unsigned int max_identity_len, unsigned char *psk, unsigned int max_psk_len) argument
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DDuckTypedPSKKeyManager.java118 public SecretKey getKey(String identityHint, String identity, Socket socket) { argument
122 .invoke(mDelegate, identityHint, identity, socket);
129 public SecretKey getKey(String identityHint, String identity, SSLEngine engine) { argument
133 .invoke(mDelegate, identityHint, identity, engine);
H A DNativeCrypto.java1108 * @param identityHint PSK identity hint provided by the server or {@code null} if no hint
1110 * @param identity buffer to be populated with PSK identity (NULL-terminated modified UTF-8)
1111 * by this method. This identity will be provided to the server.
1117 int clientPSKKeyRequested(String identityHint, byte[] identity, byte[] key); argument
1123 * @param identityHint PSK identity hint provided by this server to the client or
1125 * @param identity PSK identity provided by the client.
1131 int serverPSKKeyRequested(String identityHint, String identity, byte[] key); argument
H A DOpenSSLEngineImpl.java1307 public int clientPSKKeyRequested(String identityHint, byte[] identity, byte[] key) { argument
1308 return sslParameters.clientPSKKeyRequested(identityHint, identity, key, this);
1312 public int serverPSKKeyRequested(String identityHint, String identity, byte[] key) { argument
1313 return sslParameters.serverPSKKeyRequested(identityHint, identity, key, this);
1459 public SecretKey getPSKKey(PSKKeyManager keyManager, String identityHint, String identity) { argument
1460 return keyManager.getKey(identityHint, identity, this);

Completed in 1005 milliseconds

12345678910