Home
last modified time | relevance | path

Searched refs:accepted (Results 1 – 25 of 1159) sorted by relevance

12345678910>>...47

/third_party/mesa3d/src/amd/llvm/
Dac_llvm_cull.c102 LLVMValueRef accepted = NULL; in ac_cull_face() local
105 accepted = LLVMBuildFCmp(builder, cond, det, ctx->f32_0, ""); in ac_cull_face()
108 accepted = LLVMBuildFCmp(builder, cond, det, ctx->f32_0, ""); in ac_cull_face()
110 accepted = LLVMBuildFCmp(builder, LLVMRealONE, det, ctx->f32_0, ""); in ac_cull_face()
112 return accepted; in ac_cull_face()
135 LLVMValueRef accepted = ctx->i1true; in cull_bbox() local
159 accepted = LLVMBuildAnd(builder, accepted, visible, ""); in cull_bbox()
164 accepted = LLVMBuildAnd(builder, accepted, visible, ""); in cull_bbox()
199 accepted = LLVMBuildAnd(builder, accepted, visible, ""); in cull_bbox()
205 accepted = LLVMBuildOr(builder, accepted, w->any_w_negative, ""); in cull_bbox()
[all …]
/third_party/ltp/testcases/kernel/syscalls/getsockopt/
Dgetsockopt02.c17 static int socket_fd, accepted; variable
51 accepted = accept(socket_fd, NULL, NULL); in test_function()
52 if (accepted < 0) { in test_function()
56 if (getsockopt(accepted, SOL_SOCKET, in test_function()
68 if (accepted >= 0) in test_function()
69 SAFE_CLOSE(accepted); in test_function()
75 if (accepted >= 0) in cleanup()
76 SAFE_CLOSE(accepted); in cleanup()
/third_party/mesa3d/src/amd/common/
Dac_nir_cull.c89 cull_bbox(nir_builder *b, nir_ssa_def *pos[3][4], nir_ssa_def *accepted, const position_w_info *w_i… in cull_bbox() argument
92 nir_ssa_def *try_cull_bbox = nir_iand(b, accepted, w_info->all_w_positive); in cull_bbox()
147 return nir_if_phi(b, bbox_accepted, accepted); in cull_bbox()
158 nir_ssa_def *accepted = initially_accepted; in ac_nir_cull_triangle() local
159 accepted = nir_iand(b, accepted, w_info.w_accepted); in ac_nir_cull_triangle()
160 accepted = nir_iand(b, accepted, cull_face(b, pos, &w_info)); in ac_nir_cull_triangle()
161 accepted = nir_iand(b, accepted, cull_bbox(b, pos, accepted, &w_info)); in ac_nir_cull_triangle()
163 return accepted; in ac_nir_cull_triangle()
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fNegativeTextureApiTests.cpp75 … void getCompressedTexSubImage2DFormat(const vector<deInt32>& supported, vector<deInt32>& accepted) in getCompressedTexSubImage2DFormat() argument
93 accepted.push_back(*fmt); in getCompressedTexSubImage2DFormat()
2004 vector<deInt32> accepted; in init()
2006 getCompressedTexSubImage2DFormat(supported, accepted); in init()
2008 if (accepted.empty()) in init()
2015 for (int i = 0; i < (int)accepted.size(); i++) in init()
2017 const deInt32 glFormat = accepted[i]; in init()
2035 …m_log << TestLog::Message << "// Using texture format " << tcu::toHex(accepted[i]) << TestLog::End… in init()
2037 glCompressedTexSubImage2D(0, 0, 0, 0, 0, 0, accepted[i], 0, 0); in init()
2054 vector<deInt32> accepted; in init()
[all …]
/third_party/flutter/flutter/packages/flutter/test/gestures/
Darena_test.dart74 tester.firstEntry.resolve(GestureDisposition.accepted);
122 tester.firstEntry.resolve(GestureDisposition.accepted);
123 tester.secondEntry.resolve(GestureDisposition.accepted);
133 tester.secondEntry.resolve(GestureDisposition.accepted);
134 tester.firstEntry.resolve(GestureDisposition.accepted);
143 tester.firstEntry.resolve(GestureDisposition.accepted);
154 tester.firstEntry.resolve(GestureDisposition.accepted);
155 tester.secondEntry.resolve(GestureDisposition.accepted);
166 tester.secondEntry.resolve(GestureDisposition.accepted);
167 tester.firstEntry.resolve(GestureDisposition.accepted);
/third_party/flutter/flutter/packages/flutter/test/widgets/
Ddraggable_test.dart15 final List<int> accepted = <int>[];
33 onAccept: accepted.add,
39 expect(accepted, isEmpty);
49 expect(accepted, isEmpty);
59 expect(accepted, isEmpty);
68 expect(accepted, equals(<int>[1]));
724 final List<int> accepted = <int>[];
742 onAccept: accepted.add,
748 expect(accepted, isEmpty);
758 expect(accepted, isEmpty);
[all …]
/third_party/boost/libs/asio/example/cpp11/http/server/
Dreply.cpp23 const std::string accepted = variable
60 case reply::accepted: in to_buffer()
61 return boost::asio::buffer(accepted); in to_buffer()
127 const char accepted[] = variable
206 case reply::accepted: in to_string()
207 return accepted; in to_string()
/third_party/boost/libs/asio/example/cpp03/http/server/
Dreply.cpp24 const std::string accepted = variable
61 case reply::accepted: in to_buffer()
62 return boost::asio::buffer(accepted); in to_buffer()
128 const char accepted[] = variable
207 case reply::accepted: in to_string()
208 return accepted; in to_string()
/third_party/boost/libs/asio/example/cpp03/http/server3/
Dreply.cpp24 const std::string accepted = variable
61 case reply::accepted: in to_buffer()
62 return boost::asio::buffer(accepted); in to_buffer()
128 const char accepted[] = variable
207 case reply::accepted: in to_string()
208 return accepted; in to_string()
/third_party/boost/libs/asio/example/cpp03/http/server2/
Dreply.cpp24 const std::string accepted = variable
61 case reply::accepted: in to_buffer()
62 return boost::asio::buffer(accepted); in to_buffer()
128 const char accepted[] = variable
207 case reply::accepted: in to_string()
208 return accepted; in to_string()
/third_party/boost/libs/asio/example/cpp03/http/server4/
Dreply.cpp24 const std::string accepted = variable
61 case reply::accepted: in to_buffer()
62 return boost::asio::buffer(accepted); in to_buffer()
128 const char accepted[] = variable
207 case reply::accepted: in to_string()
208 return accepted; in to_string()
/third_party/pcre2/pcre2/src/
Dpcre2_auto_possess.c534 BOOL accepted, invert_bits; in compare_opcodes() local
823 accepted = FALSE; /* Always set in non-unicode case. */ in compare_opcodes()
827 accepted = TRUE; in compare_opcodes()
850 case 1: accepted = bothprop; break; in compare_opcodes()
851 case 2: accepted = (base_list[3] == list[3]) != same; break; in compare_opcodes()
852 case 3: accepted = !same; break; in compare_opcodes()
855 accepted = risprop && catposstab[base_list[3]][list[3]] == same; in compare_opcodes()
859 accepted = lisprop && catposstab[list[3]][base_list[3]] == same; in compare_opcodes()
885 accepted = risprop && lisprop == in compare_opcodes()
895 accepted = lisprop && risprop == in compare_opcodes()
[all …]
/third_party/gstreamer/gstreamer/tests/check/elements/
Dcapsfilter.c192 gboolean accepted; in GST_START_TEST() local
214 gst_query_parse_accept_caps_result (query, &accepted); in GST_START_TEST()
215 fail_unless (accepted); in GST_START_TEST()
224 gst_query_parse_accept_caps_result (query, &accepted); in GST_START_TEST()
225 fail_unless (!accepted); in GST_START_TEST()
238 gst_query_parse_accept_caps_result (query, &accepted); in GST_START_TEST()
239 fail_unless (accepted); in GST_START_TEST()
247 gst_query_parse_accept_caps_result (query, &accepted); in GST_START_TEST()
248 fail_unless (!accepted); in GST_START_TEST()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
Dieee802_11_auth.c33 int accepted; /* HOSTAPD_ACL_* */ member
108 if (entry->accepted == HOSTAPD_ACL_ACCEPT_TIMEOUT) in hostapd_acl_cache_get()
129 return entry->accepted; in hostapd_acl_cache_get()
564 cache->accepted = HOSTAPD_ACL_ACCEPT_TIMEOUT; in hostapd_acl_recv_radius()
566 cache->accepted = HOSTAPD_ACL_ACCEPT; in hostapd_acl_recv_radius()
603 cache->accepted = HOSTAPD_ACL_REJECT; in hostapd_acl_recv_radius()
617 cache->accepted = HOSTAPD_ACL_REJECT; in hostapd_acl_recv_radius()
619 cache->accepted = HOSTAPD_ACL_REJECT; in hostapd_acl_recv_radius()
624 hostapd_drv_set_radius_acl_auth(hapd, query->addr, cache->accepted, in hostapd_acl_recv_radius()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
Dieee802_11_auth.c33 int accepted; /* HOSTAPD_ACL_* */ member
88 return entry->accepted; in hostapd_acl_cache_get()
501 cache->accepted = HOSTAPD_ACL_ACCEPT_TIMEOUT; in hostapd_acl_recv_radius()
503 cache->accepted = HOSTAPD_ACL_ACCEPT; in hostapd_acl_recv_radius()
540 cache->accepted = HOSTAPD_ACL_REJECT; in hostapd_acl_recv_radius()
554 cache->accepted = HOSTAPD_ACL_REJECT; in hostapd_acl_recv_radius()
556 cache->accepted = HOSTAPD_ACL_REJECT; in hostapd_acl_recv_radius()
561 hostapd_drv_set_radius_acl_auth(hapd, query->addr, cache->accepted, in hostapd_acl_recv_radius()
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/android/
Dandroid_workflow_test.dart88 testUsingContext('licensesAccepted works for all licenses accepted', () async {
92 'All SDK package licenses accepted.',
106 testUsingContext('licensesAccepted works for some licenses accepted', () async {
110 '2 of 5 SDK package licenses not accepted.',
111 'Review licenses that have not been accepted (y/N)?',
125 testUsingContext('licensesAccepted works for no licenses accepted', () async {
129 '5 of 5 SDK package licenses not accepted.',
130 'Review licenses that have not been accepted (y/N)?',
/third_party/openssl/doc/man3/
DSSL_CTX_set_tlsext_servername_callback.pod41 accepted. Typically a server will call SSL_set_SSL_CTX() in the callback to set
46 In this case the servername requested by the client is not accepted and the
53 If this value is returned then the servername is not accepted by the server.
62 This return value indicates that the servername is not accepted by the server.
83 session from the original handshake had a servername accepted by the server then
91 If the session from the original handshake had a servername accepted by the
110 If a servername was accepted by the server in the original handshake then it
159 handshake, the server accepted it, and then the client successfully resumed but
/third_party/glib/gio/tests/
Dsocket-client.c70 GList *l, *accepted; in lookup_client_certificate() local
76 accepted = g_tls_client_connection_get_accepted_cas (conn); in lookup_client_certificate()
77 for (l = accepted; l != NULL; l = g_list_next (l)) in lookup_client_certificate()
96 for (l = accepted; l != NULL; l = g_list_next (l)) in lookup_client_certificate()
98 g_list_free (accepted); in lookup_client_certificate()
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/
Dmultidrag.dart85 /// Override this to call resolve() if the drag should be accepted or rejected.
91 /// Called when the gesture was accepted.
96 void accepted(GestureMultiDragStartCallback starter);
256 state.accepted((Offset initialPosition) => _startDrag(initialPosition, pointer));
313 resolve(GestureDisposition.accepted);
317 void accepted(GestureMultiDragStartCallback starter) {
362 resolve(GestureDisposition.accepted);
366 void accepted(GestureMultiDragStartCallback starter) {
411 resolve(GestureDisposition.accepted);
415 void accepted(GestureMultiDragStartCallback starter) {
[all …]
/third_party/iptables/extensions/
Dlibxt_AUDIT.man2 It can be used to record accepted, dropped, and rejected packets. See
7 on generated audit messages anymore. It is still accepted by iptables for
/third_party/glslang/Test/
Dhlsl.intrinsics.negative.frag16 …I0, inI0, 3); // expected error: last parameter is out TODO: accepted even though marke…
17 …TODO: accepted even though marked as out i // InterlockedMax(inI0, inI0, 3); // expe…
18 …I0, inI0, 3); // expected error: last parameter is out TODO: accepted even though marke…
19 …I0, inI0, 3); // expected error: last parameter is out TODO: accepted even though marke…
20 …I0, inI0, 3); // expected error: last parameter is out TODO: accepted even though marke…
/third_party/skia/third_party/externals/opengl-registry/extensions/APPLE/
DAPPLE_color_buffer_packed_float.txt63 are accepted. The first varies depending on the format of the currently
65 the combination format RGBA and type UNSIGNED_BYTE is accepted. For
67 UNSIGNED_INT_10F_11F_11F_REV_APPLE is accepted. For RGB9_E5 surfaces, the
68 combination RGB and GL_UNSIGNED_INT_5_9_9_9_REV_APPLE is accepted. For
70 FLOAT is accepted. The second is an implementation-chosen format...
/third_party/openGLES/extensions/APPLE/
DAPPLE_color_buffer_packed_float.txt63 are accepted. The first varies depending on the format of the currently
65 the combination format RGBA and type UNSIGNED_BYTE is accepted. For
67 UNSIGNED_INT_10F_11F_11F_REV_APPLE is accepted. For RGB9_E5 surfaces, the
68 combination RGB and GL_UNSIGNED_INT_5_9_9_9_REV_APPLE is accepted. For
70 FLOAT is accepted. The second is an implementation-chosen format...
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_EGL_image_external_wrap_modes.txt118 LINEAR are accepted as TEXTURE_MIN_FILTER and only CLAMP_TO_EDGE
119 is accepted as TEXTURE_WRAP_S and TEXTURE_WRAP_T."
124 LINEAR are accepted as TEXTURE_MIN_FILTER and only CLAMP_TO_EDGE,
125 REPEAT, or MIRRORED_REPEAT are accepted as TEXTURE_WRAP_S and
131 LINEAR are accepted as TEXTURE_MIN_FILTER and only CLAMP_TO_EDGE,
132 REPEAT, MIRRORED_REPEAT, or CLAMP_TO_BORDER are accepted as
/third_party/openGLES/extensions/EXT/
DEXT_EGL_image_external_wrap_modes.txt118 LINEAR are accepted as TEXTURE_MIN_FILTER and only CLAMP_TO_EDGE
119 is accepted as TEXTURE_WRAP_S and TEXTURE_WRAP_T."
124 LINEAR are accepted as TEXTURE_MIN_FILTER and only CLAMP_TO_EDGE,
125 REPEAT, or MIRRORED_REPEAT are accepted as TEXTURE_WRAP_S and
131 LINEAR are accepted as TEXTURE_MIN_FILTER and only CLAMP_TO_EDGE,
132 REPEAT, MIRRORED_REPEAT, or CLAMP_TO_BORDER are accepted as

12345678910>>...47