Home
last modified time | relevance | path

Searched refs:target (Results 2026 - 2050 of 4886) sorted by relevance

1...<<81828384858687888990>>...196

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
H A DTargetMachineC.cpp52 const Target *target = &*TargetRegistry::targets().begin(); in LLVMGetFirstTarget() local
53 return wrap(target); in LLVMGetFirstTarget()
157 const Target* target = &(unwrap(T)->getTarget()); in LLVMGetTargetMachineTarget() local
158 return wrap(target); in LLVMGetTargetMachineTarget()
/third_party/skia/tools/skqp/
H A Dcreate_apk.py98 def make_symlinked_subdir(target, working_dir):
99 newdir = os.path.join(working_dir, os.path.basename(target))
101 os.symlink(os.path.relpath(newdir, os.path.dirname(target)), target)
/third_party/skia/third_party/externals/icu/source/common/
H A Dustr_wcs.cpp294 UChar* target = NULL; in _strFromWCS() local
434 pTarget = target= dest; in _strFromWCS()
451 count+= pTarget - target; in _strFromWCS()
454 target = uStack; in _strFromWCS()
/third_party/typescript/tests/baselines/reference/tsc/declarationEmit/
H A Dwhen-same-version-is-referenced-through-source-and-another-symlinked-package-moduleCaseChange.js44 {"compilerOptions":{"target":"es5","declaration":true,"traceResolution":true}}
92 Loading module 'typescript-fsa' from 'node_modules' folder, target file type 'TypeScript'.
110 Loading module 'plugin-two' from 'node_modules' folder, target file type 'TypeScript'.
124 Loading module 'typescript-fsa' from 'node_modules' folder, target file type 'TypeScript'.
141 Default library for target 'es5'
156 Program options: {"target":1,"declaration":true,"traceResolution":true,"project":"/user/username/projects/myproject/plugin-one","explainFiles":true,"configFilePath":"/user/username/projects/myproject/plugin-one/tsconfig.json"}
H A Dwhen-same-version-is-referenced-through-source-and-another-symlinked-package.js44 {"compilerOptions":{"target":"es5","declaration":true,"traceResolution":true}}
92 Loading module 'typescript-fsa' from 'node_modules' folder, target file type 'TypeScript'.
110 Loading module 'plugin-two' from 'node_modules' folder, target file type 'TypeScript'.
124 Loading module 'typescript-fsa' from 'node_modules' folder, target file type 'TypeScript'.
141 Default library for target 'es5'
156 Program options: {"target":1,"declaration":true,"traceResolution":true,"project":"/user/username/projects/myproject/plugin-one","explainFiles":true,"configFilePath":"/user/username/projects/myproject/plugin-one/tsconfig.json"}
/third_party/protobuf/src/google/protobuf/stubs/
H A Dstringpiece.cc67 void StringPiece::CopyToString(std::string* target) const { in CopyToString()
68 target->assign(ptr_, length_); in CopyToString()
71 void StringPiece::AppendToString(std::string* target) const { in AppendToString()
72 target->append(ptr_, length_); in AppendToString()
/third_party/python/Lib/test/test_importlib/frozen/
H A Dtest_finder.py160 for target in (None, match, nonmatch, object(), 'not-a-module-object'):
161 with self.subTest(target):
162 spec = self.find(name, target=target)
/third_party/skia/include/effects/
H A DSkImageFilters.h317 * the target output, and paint color/alpha can be emulated with SkShaders::Color().
331 SkRect target = pic ? pic->cullRect() : SkRect::MakeEmpty(); in Picture() local
332 return Picture(std::move(pic), target); in Picture()
429 * the location and target.
431 * @param target The location that the spot light is point towards
441 static sk_sp<SkImageFilter> SpotLitDiffuse(const SkPoint3& location, const SkPoint3& target,
485 * the location and target.
487 * @param target The location that the spot light is point towards
498 static sk_sp<SkImageFilter> SpotLitSpecular(const SkPoint3& location, const SkPoint3& target,
/third_party/selinux/secilc/
H A Dsecilc.c53 printf(" -t, --target=<type> specify target architecture. may be selinux or\n"); in usage()
94 int target = SEPOL_TARGET_SELINUX; in main() local
114 {"target", required_argument, 0, 't'}, in main()
143 target = SEPOL_TARGET_SELINUX; in main()
145 target = SEPOL_TARGET_XEN; in main()
147 fprintf(stderr, "Unknown target: %s\n", optarg); in main()
260 cil_set_target_platform(db, target); in main()
/third_party/vulkan-loader/scripts/
H A Dloader_genvk.py76 # Output target directory
251 # the requested target and command line options.
255 # target - target to generate
266 # Select a generator matching the requested target
267 if (args.target in genOpts.keys()):
268 createGenerator = genOpts[args.target][0]
269 options = genOpts[args.target][1]
288 write('No generator options for unknown target:', args.target, fil
[all...]
/third_party/eudev/src/udev/
H A Dudev-builtin-path_id.c255 const char *target; in handle_scsi_iscsi() local
276 target = udev_device_get_sysattr_value(sessiondev, "targetname"); in handle_scsi_iscsi()
277 if (target == NULL) { in handle_scsi_iscsi()
300 path_prepend(path, "ip-%s:%s-iscsi-%s-%s", addr, port, target, lun); in handle_scsi_iscsi()
311 int host, bus, target, lun; in handle_scsi_default() local
324 if (sscanf(name, "%d:%d:%d:%d", &host, &bus, &target, &lun) != 4) in handle_scsi_default()
387 path_prepend(path, "scsi-%u:%u:%u:%u", host, bus, target, lun); in handle_scsi_default()
/third_party/mesa3d/src/gallium/frontends/clover/llvm/
H A Dinvocation.cpp247 const target &target = ir_target; in create_compiler_instance() local
258 c->getTargetOpts().CPU = target.cpu; in create_compiler_instance()
259 c->getTargetOpts().Triple = target.triple; in create_compiler_instance()
279 ::llvm::Triple(target.triple), in create_compiler_instance()
352 // to the OpenCL C barrier() builtin with calls to target in compile()
517 const std::string target = dev.address_bits() == 32u ? in compile_to_spirv() local
520 auto c = create_compiler_instance(dev, target, in compile_to_spirv()
/third_party/mesa3d/src/gallium/frontends/dri/
H A Ddri_helpers.c286 * "If target is EGL_GL_RENDERBUFFER and buffer is not the name of a in dri2_create_image_from_renderbuffer2()
290 * "If target is EGL_GL_TEXTURE_2D , EGL_GL_TEXTURE_CUBE_MAP_*, in dri2_create_image_from_renderbuffer2()
292 * default GL texture object (0) for the corresponding GL target, the in dri2_create_image_from_renderbuffer2()
367 dri2_create_from_texture(__DRIcontext *context, int target, unsigned texture, in dri2_create_from_texture() argument
380 if (!obj || obj->Target != target) { in dri2_create_from_texture()
391 if (target == GL_TEXTURE_CUBE_MAP) in dri2_create_from_texture()
405 if (target == GL_TEXTURE_3D && obj->Image[face][level]->Depth < depth) { in dri2_create_from_texture()
680 screen->target, 0, 0, PIPE_BIND_SAMPLER_VIEW)) in dri2_yuv_dma_buf_supported()
704 screen->target, 0, 0, in dri2_query_dma_buf_formats()
707 screen->target, in dri2_query_dma_buf_formats()
[all...]
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_surface.c39 enum pipe_texture_target target) in create_ivci()
47 switch (target) { in create_ivci()
78 unreachable("unsupported target"); in create_ivci()
264 pres->target == PIPE_TEXTURE_3D ? target_2d[is_array] : pres->target); in zink_create_surface()
398 zink_surface_create_null(struct zink_context *ctx, enum pipe_texture_target target, unsigned width, unsigned height, unsigned samples) in zink_surface_create_null() argument
408 templ.target = target; in zink_surface_create_null()
36 create_ivci(struct zink_screen *screen, struct zink_resource *res, const struct pipe_surface *templ, enum pipe_texture_target target) create_ivci() argument
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/
H A DRangeTreeTest.java274 assertThat(v.visited.stream().map(Edge::target).filter(terminal::equals).count()).isEqualTo(4); in testVisitor()
512 static Edge of(DfaNode source, DfaNode target, DfaEdge edge) { in of() argument
513 return new AutoValue_RangeTreeTest_Edge(source, target, edge.getDigitMask()); in of()
516 abstract DfaNode target(); in target() method in RangeTreeTest.Edge
525 public void visit(DfaNode source, DfaEdge edge, DfaNode target) { in visit() argument
526 visited.add(Edge.of(source, target, edge)); in visit()
527 target.accept(this); in visit()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dcapture_gles_3_0_params.cpp307 GLenum target, in CaptureGetInteger64i_v_data()
312 CaptureGetParameter(glState, target, sizeof(GLint64), paramCapture); in CaptureGetInteger64i_v_data()
326 GLenum target, in CaptureGetIntegeri_v_data()
331 CaptureGetParameter(glState, target, sizeof(GLint), paramCapture); in CaptureGetIntegeri_v_data()
336 GLenum target, in CaptureGetInternalformativ_params()
353 // If pname is GL_SAMPLES, the sample counts supported for internalformat and target are written in CaptureGetInternalformativ_params()
629 GLenum target, in CaptureInvalidateFramebuffer_attachments()
640 GLenum target, in CaptureInvalidateSubFramebuffer_attachments()
305 CaptureGetInteger64i_v_data(const State &glState, bool isCallValid, GLenum target, GLuint index, GLint64 *data, ParamCapture *paramCapture) CaptureGetInteger64i_v_data() argument
324 CaptureGetIntegeri_v_data(const State &glState, bool isCallValid, GLenum target, GLuint index, GLint *data, ParamCapture *paramCapture) CaptureGetIntegeri_v_data() argument
334 CaptureGetInternalformativ_params(const State &glState, bool isCallValid, GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint *params, ParamCapture *paramCapture) CaptureGetInternalformativ_params() argument
627 CaptureInvalidateFramebuffer_attachments(const State &glState, bool isCallValid, GLenum target, GLsizei numAttachments, const GLenum *attachments, ParamCapture *paramCapture) CaptureInvalidateFramebuffer_attachments() argument
638 CaptureInvalidateSubFramebuffer_attachments(const State &glState, bool isCallValid, GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height, ParamCapture *paramCapture) CaptureInvalidateSubFramebuffer_attachments() argument
/third_party/typescript/tests/baselines/reference/
H A DderivedClassSuperProperties.js420 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
421 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
422 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
423 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
424 return c > 3 && r && Object.defineProperty(target, key, r), r;
/third_party/vk-gl-cts/modules/egl/
H A DteglPreservingSwapTests.cpp237 void render (tcu::Surface* target, float x1, float y1, float x2, float y2, PreservingSwapTest::DrawType drawType);
252 void ReferenceProgram::render (tcu::Surface* target, float x1, float y1, float x2, float y2, PreservingSwapTest::DrawType drawType) in render() argument
256 const int ox = target->getWidth()/2; in render()
257 const int oy = target->getHeight()/2; in render()
259 const int px = target->getWidth(); in render()
260 const int py = target->getHeight(); in render()
273 target->setPixel(x, y, color); in render()
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_pbo_compute.c596 create_conversion_shader(struct st_context *st, enum pipe_texture_target target, unsigned num_components) in create_conversion_shader() argument
600 b.shader->info.workgroup_size[0] = target != PIPE_TEXTURE_1D ? 8 : 64; in create_conversion_shader()
601 b.shader->info.workgroup_size[1] = target != PIPE_TEXTURE_1D ? 8 : 1; in create_conversion_shader()
608 nir_variable *sampler = nir_variable_create(b.shader, nir_var_uniform, st_pbo_sampler_type_for_target(target, ST_PBO_CONVERT_FLOAT), "sampler"); in create_conversion_shader()
694 compute_shader_key(enum pipe_texture_target target, unsigned num_components) in compute_shader_key() argument
707 assert(target < ARRAY_SIZE(key_target)); in compute_shader_key()
708 assert(key_target[target] != UINT8_MAX); in compute_shader_key()
709 return key_target[target] | (num_components << 3); in compute_shader_key()
713 get_dim_from_target(enum pipe_texture_target target) in get_dim_from_target() argument
715 switch (target) { in get_dim_from_target()
[all...]
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_draw.cpp128 if (view->base.texture->target == PIPE_BUFFER) { in fill_srv_descriptors()
227 image_view_dimension(enum pipe_texture_target target) in image_view_dimension() argument
229 switch (target) { in image_view_dimension()
242 unreachable("unexpected target"); in image_view_dimension()
271 uav_desc.ViewDimension = image_view_dimension(res->base.b.target); in fill_image_descriptors()
320 if (res->base.b.target == PIPE_BUFFER) { in fill_image_descriptors()
325 if (res->base.b.target == PIPE_TEXTURE_3D) { in fill_image_descriptors()
695 if (!d3d12_subresource_id_uses_layer(res->base.b.target)) { in transition_surface_subresources_state()
802 output_buf_templ.target = PIPE_BUFFER; in update_draw_indirect_with_sysvals()
850 d3d12_stream_output_target *target in update_draw_auto() local
1160 struct d3d12_stream_output_target *target = (struct d3d12_stream_output_target *)so_targets[i]; d3d12_draw_vbo() local
[all...]
/base/startup/appspawn/modules/sandbox/
H A Dsandbox_load.c224 sandboxNode->target = strdup(dstPath); in DecodeMountPathConfig()
237 if (sandboxNode->source == NULL || sandboxNode->target == NULL) { in DecodeMountPathConfig()
238 APPSPAWN_LOGE("Failed to get sourc or target path"); in DecodeMountPathConfig()
265 const char *target = GetStringFromJsonObj(config, "target-name"); in DecodeSymbolLinksConfig() local
267 if (target == NULL || linkName == NULL) { in DecodeSymbolLinksConfig()
271 SymbolLinkNode *tmp = GetSymbolLinkNode(section, target, linkName); in DecodeSymbolLinksConfig()
274 APPSPAWN_LOGW("SymbolLink %{public}s %{public}s repeat config, delete old", target, linkName); in DecodeSymbolLinksConfig()
281 node->target = strdup(target); in DecodeSymbolLinksConfig()
[all...]
/base/startup/appspawn/test/unittest/app_spawn_standard_test/
H A Dapp_spawn_sandbox_new_mount_test.cpp393 extraData.data.depNode->target = (char*)malloc(sizeof(char) * TEST_STR_LEN); in HWTEST_F()
394 ASSERT_EQ(extraData.data.depNode->target != nullptr, 1); in HWTEST_F()
395 ret = strcpy_s(extraData.data.depNode->target, TEST_STR_LEN, "/xxxx/xxxx/xxxxxxx/xxxxxx/xxx"); in HWTEST_F()
399 ret = strcpy_s(extraData.data.depNode->target, TEST_STR_LEN, "/xxxx/xxxx/xxxxxx"); in HWTEST_F()
414 free(extraData.data.depNode->target); in HWTEST_F()
506 mountNode.target = (char*)malloc(sizeof(char) * TEST_STR_LEN); in HWTEST_F()
507 ASSERT_EQ(mountNode.target!= nullptr, 1); in HWTEST_F()
512 ret = strcpy_s(mountNode.target, TEST_STR_LEN, "/test/xxxx"); in HWTEST_F()
525 free(mountNode.target); in HWTEST_F()
637 \"target in HWTEST_F()
[all...]
/third_party/mesa3d/src/gallium/frontends/nine/
H A Dadapter9.c288 enum pipe_texture_target target; in NineAdapter9_CheckDeviceFormat() local
318 case D3DRTYPE_SURFACE: target = PIPE_TEXTURE_2D; break; in NineAdapter9_CheckDeviceFormat()
319 case D3DRTYPE_TEXTURE: target = PIPE_TEXTURE_2D; break; in NineAdapter9_CheckDeviceFormat()
320 case D3DRTYPE_CUBETEXTURE: target = PIPE_TEXTURE_CUBE; break; in NineAdapter9_CheckDeviceFormat()
321 case D3DRTYPE_VOLUME: target = PIPE_TEXTURE_3D; break; in NineAdapter9_CheckDeviceFormat()
322 case D3DRTYPE_VOLUMETEXTURE: target = PIPE_TEXTURE_3D; break; in NineAdapter9_CheckDeviceFormat()
323 case D3DRTYPE_VERTEXBUFFER: target = PIPE_BUFFER; break; in NineAdapter9_CheckDeviceFormat()
324 case D3DRTYPE_INDEXBUFFER: target = PIPE_BUFFER; break; in NineAdapter9_CheckDeviceFormat()
395 pf = d3d9_to_pipe_format_checked(screen, CheckFormat, target, in NineAdapter9_CheckDeviceFormat()
444 else /* render-target */ in NineAdapter9_CheckDeviceMultiSampleType()
[all...]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_buffer.c80 if (res->b.b.target == PIPE_BUFFER && res->b.b.flags & PIPE_RESOURCE_FLAG_MAP_PERSISTENT) { in si_init_resource_fields()
97 if ((res->b.b.target != PIPE_BUFFER && !tex->surface.is_linear) || in si_init_resource_fields()
203 if (sscreen->debug_flags & DBG(VM) && res->b.b.target == PIPE_BUFFER) { in si_alloc_resource()
216 if (buf->target == PIPE_BUFFER) { in si_resource_destroy()
309 if (resource->target == PIPE_BUFFER) in si_invalidate_resource()
345 assert(resource->target == PIPE_BUFFER); in si_buffer_transfer_map()
609 buffer.target = PIPE_BUFFER; in pipe_aligned_buffer_create()
718 if (templ->target == PIPE_BUFFER) { in si_resource_create()
750 if (resource->target == PIPE_BUFFER) in si_resource_commit()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationES2_autogen.h37 GLenum target,
41 GLenum target,
82 GLenum target);
204 GLenum target,
210 GLenum target,
279 GLenum target,
300 GLenum target,
366 bool ValidateHint(const Context *context, angle::EntryPoint entryPoint, GLenum target, GLenum mode);
408 GLenum target,

Completed in 25 milliseconds

1...<<81828384858687888990>>...196