/third_party/mesa3d/src/amd/llvm/ |
D | ac_llvm_cull.c | 102 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() 113 if (accepted) { in ac_cull_face() 117 accepted = LLVMBuildOr(builder, accepted, ac_build_is_inf_or_nan(ctx, det), ""); in ac_cull_face() 120 return accepted; in ac_cull_face() 164 LLVMValueRef accepted = ctx->i1true; in cull_bbox() local 193 accepted = LLVMBuildAnd(builder, accepted, visible, ""); in cull_bbox() 198 accepted = LLVMBuildAnd(builder, accepted, visible, ""); in cull_bbox() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/getsockopt/ |
D | getsockopt02.c | 17 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/ |
D | ac_nir_cull.c | 89 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/rust/crates/rustix/tests/net/ |
D | connect_bind_send.rs | 27 let accepted = rustix::net::accept(&listener).expect("accept"); in net_v4_connect_any() localVariable 29 let n = rustix::net::recv(&accepted, &mut response, RecvFlags::empty()).expect("recv"); in net_v4_connect_any() 66 let accepted = rustix::net::accept(&listener).expect("accept"); in net_v6_connect_any() localVariable 68 let n = rustix::net::recv(&accepted, &mut response, RecvFlags::empty()).expect("recv"); in net_v6_connect_any() 102 let accepted = rustix::net::accept(&listener).expect("accept"); in net_v4_connect() localVariable 104 let n = rustix::net::recv(&accepted, &mut response, RecvFlags::empty()).expect("recv"); in net_v4_connect() 145 let accepted = rustix::net::accept(&listener).expect("accept"); in net_v6_connect() localVariable 147 let n = rustix::net::recv(&accepted, &mut response, RecvFlags::empty()).expect("recv"); in net_v6_connect() 177 let accepted = rustix::net::accept(&listener).expect("accept"); in net_v4_bind_any() localVariable 179 let n = rustix::net::recv(&accepted, &mut response, RecvFlags::empty()).expect("recv"); in net_v4_bind_any() [all …]
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fNegativeTextureApiTests.cpp | 75 … 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/ |
D | arena_test.dart | 74 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/ |
D | draggable_test.dart | 15 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/pcre2/pcre2/src/ |
D | pcre2_auto_possess.c | 551 BOOL accepted, invert_bits; in compare_opcodes() local 840 accepted = FALSE; /* Always set in non-unicode case. */ in compare_opcodes() 844 accepted = TRUE; in compare_opcodes() 867 case 1: accepted = bothprop; break; in compare_opcodes() 868 case 2: accepted = (base_list[3] == list[3]) != same; break; in compare_opcodes() 869 case 3: accepted = !same; break; in compare_opcodes() 872 accepted = risprop && catposstab[base_list[3]][list[3]] == same; in compare_opcodes() 876 accepted = lisprop && catposstab[list[3]][base_list[3]] == same; in compare_opcodes() 902 accepted = risprop && lisprop == in compare_opcodes() 912 accepted = lisprop && risprop == in compare_opcodes() [all …]
|
/third_party/gstreamer/gstreamer/tests/check/elements/ |
D | capsfilter.c | 192 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/ |
D | ieee802_11_auth.c | 33 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/ |
D | ieee802_11_auth.c | 33 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/openssl/doc/man3/ |
D | SSL_CTX_set_tlsext_servername_callback.pod | 41 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/flutter/flutter/packages/flutter_tools/test/general.shard/android/ |
D | android_workflow_test.dart | 88 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/flutter/flutter/packages/flutter/lib/src/gestures/ |
D | multidrag.dart | 85 /// 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 …]
|
D | scale.dart | 21 /// gesture but the gesture has not been accepted definitively. 24 /// The sequence of pointer events seen thus far has been accepted 26 accepted, 28 /// The sequence of pointer events seen thus far has been accepted 412 _state = _ScaleState.accepted; 426 resolve(GestureDisposition.accepted); 427 } else if (_state.index >= _ScaleState.accepted.index) { 428 resolve(GestureDisposition.accepted); 431 if (_state == _ScaleState.accepted && shouldStartIfAccepted) { 482 case _ScaleState.accepted: [all …]
|
/third_party/glslang/Test/ |
D | hlsl.intrinsics.negative.frag | 16 …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/openGLES/extensions/APPLE/ |
D | APPLE_color_buffer_packed_float.txt | 63 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/APPLE/ |
D | APPLE_color_buffer_packed_float.txt | 63 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/EXT/ |
D | EXT_EGL_image_external_wrap_modes.txt | 118 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
|
D | EXT_copy_texture.txt | 103 Specification). The semantics and accepted values of the <target>, 108 values 1, 2, 3, and 4 are not accepted by CopyTexImage2DEXT. 117 Figure 3.10 of the GL Specification. The semantics and accepted values 126 semantics and accepted values of the <target>, <level>, <xoffset>, and 128 and TexSubImage2DEXT counterparts. The semantics and accepted values 140 semantics and accepted values of the <target>, <level>, <xoffset>, 142 TexSubImage3DEXT counterparts. The semantics and accepted values of 238 If SGIS_texture_filter4 is not supported, 2 is not accepted as a border
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_EGL_image_external_wrap_modes.txt | 118 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
|
D | EXT_copy_texture.txt | 103 Specification). The semantics and accepted values of the <target>, 108 values 1, 2, 3, and 4 are not accepted by CopyTexImage2DEXT. 117 Figure 3.10 of the GL Specification. The semantics and accepted values 126 semantics and accepted values of the <target>, <level>, <xoffset>, and 128 and TexSubImage2DEXT counterparts. The semantics and accepted values 140 semantics and accepted values of the <target>, <level>, <xoffset>, 142 TexSubImage3DEXT counterparts. The semantics and accepted values of 238 If SGIS_texture_filter4 is not supported, 2 is not accepted as a border
|
/third_party/libxml2/xstc/ |
D | xstc.py | 155 def __init__(self, isSchema, groupName, name, accepted, file, val, descr): argument 164 self.accepted = accepted 343 def __init__(self, groupName, name, accepted, file, val, descr): argument 344 XSTCTestCase.__init__(self, 1, groupName, name, accepted, file, val, descr) 379 def __init__(self, groupName, name, accepted, file, val, descr): argument 380 XSTCTestCase.__init__(self, 0, groupName, name, accepted, file, val, descr) 512 if not test.accepted:
|
/third_party/libjpeg-turbo/.github/ |
D | CONTRIBUTING.md | 7 can or will be accepted into the libjpeg-turbo code base. In order to maximize 29 accepted unless: 57 Specific types of features that *will not* be accepted: 71 are unlikely to be accepted unless: 89 Specific types of build system enhancements that *will not* be accepted:
|
/third_party/node/lib/internal/cluster/ |
D | child.js | 190 const accepted = server !== undefined; 192 send({ ack: message.seq, accepted }); field 194 if (accepted)
|