/third_party/rust/crates/cxx/tests/ui/ |
H A D | unique_ptr_to_opaque.rs | 1 mod outside { modules 15 type C = crate::outside::C; 22 cxx::UniquePtr::new(outside::C { a: 4 }); in main()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fClippingTests.cpp | 1357 // outside the viewport, wide points have fragments in the viewport in init() 1414 // from center to outside of viewport in init() 1422 // from outside to inside of viewport in init() 1426 // from outside to outside in init() 1429 // outside the viewport, wide lines have fragments in the viewport in init() 1886 const tcu::IVec3 outside[] = in init() local 1888 // outside one clipping plane in init() 1896 // outside two clipping planes in init() 1912 // outside thre in init() [all...] |
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fClippingTests.cpp | 1361 // outside the viewport, wide points have fragments in the viewport in init() 1418 // from center to outside of viewport in init() 1426 // from outside to inside of viewport in init() 1430 // from outside to outside in init() 1433 // outside the viewport, wide lines have fragments in the viewport in init() 1889 const tcu::IVec3 outside[] = in init() local 1891 // outside one clipping plane in init() 1899 // outside two clipping planes in init() 1915 // outside thre in init() [all...] |
/third_party/vk-gl-cts/framework/referencerenderer/ |
H A D | rrRenderer.cpp | 289 const TriangleVertex& outside = clipped; in clipTriangleOneVertex() local 292 const ClipFloat hitDist = plane.clipLineSegmentEnd(inside.position, outside.position); in clipTriangleOneVertex() 301 const ClipVec4 approximatedClipPoint = tcu::mix(inside.position, outside.position, hitDist); in clipTriangleOneVertex() 302 const ClipVec4 anotherPointOnLine = (hitDist > (ClipFloat)0.5) ? (inside.position) : (outside.position); in clipTriangleOneVertex() 305 middle.weight[0] = tcu::mix(inside.weight[0], outside.weight[0], hitDist); in clipTriangleOneVertex() 306 middle.weight[1] = tcu::mix(inside.weight[1], outside.weight[1], hitDist); in clipTriangleOneVertex() 307 middle.weight[2] = tcu::mix(inside.weight[2], outside.weight[2], hitDist); in clipTriangleOneVertex() 313 const TriangleVertex& outside = clipped; in clipTriangleOneVertex() local 316 const ClipFloat hitDist = plane.clipLineSegmentEnd(inside.position, outside.position); in clipTriangleOneVertex() 325 const ClipVec4 approximatedClipPoint = tcu::mix(inside.position, outside in clipTriangleOneVertex() 364 const TriangleVertex& outside = clipped1; clipTriangleTwoVertices() local 388 const TriangleVertex& outside = clipped2; clipTriangleTwoVertices() local [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_goto_ifs.c | 423 * loop head A. B will be added to the outside set and to the reach set. 426 * \param outside all blocks directly outside the loop will be added 430 inside_outside(nir_block *block, struct set *loop_heads, struct set *outside, in inside_outside() argument 475 _mesa_set_add_pre_hashed(outside, child_entry->hash, in inside_outside() 489 inside_outside((nir_block *) entry->key, loop_heads, outside, reach, in inside_outside() 501 printf("outside(%u) = ", block->index); in inside_outside() 502 print_block_set(outside); in inside_outside() 869 struct set *outside = _mesa_pointer_set_create(mem_ctx); in nir_structurize() local 871 inside_outside(block, loop_heads, outside, reac in nir_structurize() [all...] |
/third_party/mesa3d/src/broadcom/compiler/ |
H A D | v3d_nir_lower_line_smooth.c | 124 nir_ssa_def *outside = nir_fge(&b, nir_imm_float(&b, 0.0f), coverage); in initialise_coverage_var() local 126 nir_discard_if(&b, outside); in initialise_coverage_var()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parameterInitializersForwardReferencing.js | 22 function outside() { function 69 function outside() {
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_draw_hw_select.c | 167 * if all vertices of the primitive are outside (plane equation <0) of in fast_frustum_culling() 171 nir_ssa_def *outside = NULL; in fast_frustum_culling() local 179 outside = j ? nir_iand(b, outside, r) : r; in fast_frustum_culling() 182 cull = i ? nir_ior(b, cull, outside) : outside; in fast_frustum_culling() 242 * -: outside plane in clip_with_plane() 431 nir_ssa_def *outside = NULL; in build_point_nir_shader() local 436 outside = i ? nir_ior(b, outside, in build_point_nir_shader() [all...] |
/third_party/python/Lib/test/ |
H A D | test_array.py | 202 # outside: An entry that is not in example 348 a.append(self.outside) 350 self.assertEqual(list(empit), [self.outside]) 351 self.assertEqual(list(a), list(self.example) + [self.outside]) 361 data2 = [self.outside] + data 362 rev_data = data[len(data)-2::-1] + [self.outside] 368 a.insert(0, self.outside) 377 a.insert(0, self.outside) 387 a.insert(0, self.outside) 396 a.insert(0, self.outside) 1173 outside = str('\\x33') global() variable in UnicodeTest 1331 outside = 23 global() variable in SignedNumberTest 1344 outside = 0xaa global() variable in UnsignedNumberTest 1415 outside = 23 global() variable in FPTest [all...] |
/third_party/skia/modules/skottie/src/effects/ |
H A D | SphereEffect.cpp | 232 auto outside = this->buildEffectShader(-1); variable 236 std::move(outside)) 237 : std::move(outside);
|
/third_party/skia/src/gpu/ |
H A D | GrClip.h | 53 * The returned bounds represent the limits of pixels that can be drawn; anything outside of the 88 bool outside = !SkIRect::Intersects(pixelBounds, this->getConservativeBounds()); in preApply() local 89 return outside ? Effect::kClippedOut : Effect::kClipped; in preApply() 122 * Returns true if the given draw bounds count as entirely outside the clip. 137 * coverage for pixels inside the returned bounds. Pixels outside the bounds will either 159 * center outside of these bounds but will evaluate to 0 coverage. This is visually acceptable,
|
/third_party/rust/crates/syn/tests/ |
H A D | test_expr.rs | 124 let tokens = quote!(#[outside] #path()); in test_macro_variable_func() 134 ident: "outside", in test_macro_variable_func()
|
/third_party/skia/src/effects/imagefilters/ |
H A D | SkArithmeticImageFilter.cpp | 461 // Now apply the mode with transparent-color to the outside of the fg image in drawForeground() 462 SkRegion outside(SkIRect::MakeWH(dst.width(), dst.height())); in drawForeground() 463 outside.op(fgoffset, SkRegion::kDifference_Op); in drawForeground() 465 for (SkRegion::Iterator iter(outside); !iter.done(); iter.next()) { in drawForeground()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_state_viewport.c | 374 /* Discard primitives that would lie entirely outside the clip in si_emit_guardband() 469 * 12.12 if we are drawing to some pixels outside the lower in si_set_viewport_states() 635 * if a pixel is inside cliprects 0 and 1, but outside 2 and 3, it is assigned in si_emit_window_rectangles() 641 static const unsigned outside[4] = { in si_emit_window_rectangles() local 642 /* outside rectangle 0 */ in si_emit_window_rectangles() 645 /* outside rectangles 0, 1 */ in si_emit_window_rectangles() 647 /* outside rectangles 0, 1, 2 */ in si_emit_window_rectangles() 649 /* outside rectangles 0, 1, 2, 3 */ in si_emit_window_rectangles() 652 const unsigned disabled = 0xffff; /* all inside and outside cases */ in si_emit_window_rectangles() 662 rule = ~outside[num_rectangle in si_emit_window_rectangles() [all...] |
/third_party/ffmpeg/tests/fate/ |
H A D | image.mak | 320 FATE_EXR += fate-exr-rgb-scanline-half-zip-dw-outside 321 fate-exr-rgb-scanline-half-zip-dw-outside: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgb_scanline_half_zip_dw_outside.exr -pix_fmt gbrpf32le 323 FATE_EXR += fate-exr-rgb-tile-half-zip-dw-outside 324 fate-exr-rgb-tile-half-zip-dw-outside: CMD = framecrc -i $(TARGET_SAMPLES)/exr/rgb_tile_half_zip_dw_outside.exr -pix_fmt gbrpf32le
|
/third_party/node/lib/internal/crypto/ |
H A D | webidl.js | 129 `is outside the expected range of ${lowerBound} to ${upperBound}.`,
|
/third_party/skia/samplecode/ |
H A D | SampleQuadStroker.cpp | 486 SkRect outside = SkRect::MakeXYWH(center.fX - maxSide - width, center.fY - maxSide - width, in draw_fill() local 488 path.addRect(outside); in draw_fill()
|
/third_party/node/test/parallel/ |
H A D | test-webcrypto-webidl.js | 80 message: `${prefix}: ${context} is outside the expected range of 0 to ${max}.`,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
H A D | TextureD3D.cpp | 49 // TODO: this is the only place outside of renderer that asks for a buffers raw data. in GetUnpackPointer() 1074 bool outside = sourceArea.x < 0 || sourceArea.y < 0 || in copyImage() local 1078 // WebGL requires that pixels that would be outside the framebuffer are treated as zero values, in copyImage() 1079 // so clear the mip level to 0 prior to making the copy if any pixel would be sampled outside. in copyImage() 1081 if (outside && (context->isWebGL() || context->isRobustResourceInitEnabled())) in copyImage() 1828 bool outside = sourceArea.x < 0 || sourceArea.y < 0 || 1832 // WebGL requires that pixels that would be outside the framebuffer are treated as zero values, 1833 // so clear the mip level to 0 prior to making the copy if any pixel would be sampled outside. 1835 if (outside && (context->isWebGL() || context->isRobustResourceInitEnabled()))
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
H A D | TextureGL.cpp | 676 // Did the read area go outside the framebuffer? in copyImage() 677 bool outside = sourceArea.x < 0 || sourceArea.y < 0 || in copyImage() local 685 outside && (context->isRobustResourceInitEnabled() || context->isWebGL()); in copyImage() 687 // When robust resource initialization is enabled, the area outside the framebuffer must be in copyImage()
|
/third_party/glslang/glslang/MachineIndependent/ |
H A D | glslang_tab.cpp | 11517 parseContext.error((yyvsp[-2].lex).loc, "cannot appear outside switch statement", "case", ""); 11534 parseContext.error((yyvsp[-1].lex).loc, "cannot appear outside switch statement", "default", ""); 11849 // Set currentFunctionType to empty pointer when goes outside of the function
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 323 % Do this outside of the \shipout so @code etc. will be expanded in 331 % Have to do this stuff outside the \shipout because we want it to 560 outside of any environment% 808 \def\temp{\inrightmargin\righttext}% odd page -> outside is right margin 858 % This trickery is to read FILE outside of a group, in case it makes 3425 % title on inside top of left hand pages, and page numbers on outside top 5108 % Change the page size parameters. We could do this once outside this 5357 % Make sure \absseclevel doesn't fall outside the range: 6356 \leftskip=0pt\rightskip=0pt % we want these *outside*. 7003 % Get the values of \leftskip and \rightskip as they were outside th [all...] |
/third_party/node/lib/internal/ |
H A D | errors.js | 974 return `"${name}" is outside of buffer bounds`; 976 return 'Attempt to access memory outside buffer bounds';
|
/third_party/ffmpeg/libavutil/x86/ |
H A D | x86inc.asm | 31 ; has significant usefulness outside of x264 and we want it to be available
|
/third_party/skia/third_party/externals/opengl-registry/xml/ |
H A D | readme.tex | 55 Some groups outside Khronos have their own XML based API descriptions,
|