Home
last modified time | relevance | path

Searched defs:target (Results 1 – 25 of 2604) sorted by relevance

12345678910>>...105

/third_party/ltp/tools/sparse/sparse-src/
Dtarget.h79 struct target { struct
94 const struct target *target_32bit; argument
95 const struct target *target_x32bit; argument
96 const struct target *target_64bit; argument
100 void (*init)(const struct target *self); argument
102 void (*predefine)(const struct target *self); argument
106 extern const struct target target_default; argument
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DReader.java209 void readDoubleList(List<Double> target) throws IOException; in readDoubleList()
217 void readFloatList(List<Float> target) throws IOException; in readFloatList()
225 void readUInt64List(List<Long> target) throws IOException; in readUInt64List()
233 void readInt64List(List<Long> target) throws IOException; in readInt64List()
241 void readInt32List(List<Integer> target) throws IOException; in readInt32List()
249 void readFixed64List(List<Long> target) throws IOException; in readFixed64List()
257 void readFixed32List(List<Integer> target) throws IOException; in readFixed32List()
265 void readBoolList(List<Boolean> target) throws IOException; in readBoolList()
272 void readStringList(List<String> target) throws IOException; in readStringList()
280 void readStringListRequireUtf8(List<String> target) throws IOException; in readStringListRequireUtf8()
[all …]
DUnsafeUtil.java120 static byte getByte(Object target, long offset) { in getByte()
124 static void putByte(Object target, long offset, byte value) { in putByte()
128 static int getInt(Object target, long offset) { in getInt()
132 static void putInt(Object target, long offset, int value) { in putInt()
136 static long getLong(Object target, long offset) { in getLong()
140 static void putLong(Object target, long offset, long value) { in putLong()
144 static boolean getBoolean(Object target, long offset) { in getBoolean()
148 static void putBoolean(Object target, long offset, boolean value) { in putBoolean()
152 static float getFloat(Object target, long offset) { in getFloat()
156 static void putFloat(Object target, long offset, float value) { in putFloat()
[all …]
/third_party/node/deps/npm/node_modules/bin-links/lib/
Dcheck-bin.js17 const target = resolve(binTarget({ path, top }), bin) constant
19 return isWindows ? checkShim({ target, path }) : checkLink({ target, path }) property
23 const handleReadLinkError = async ({ er, target }) => field
25 : failEEXIST({ target }) field
27 const checkLink = async ({ target, path }) => { property
29 .catch(er => handleReadLinkError({ er, target })) field
38 return failEEXIST({ target }) field
42 const handleReadCmdShimError = ({ er, target }) => field
44 : failEEXIST({ target }) field
46 const failEEXIST = ({ target }) => field
[all …]
/third_party/jerryscript/tests/jerry/es2015/
Dproxy_own_keys.js27 var target = {}; variable
28 var handler = { ownKeys (target) { argument
69 var target = { prop1: "prop1", prop2: "prop2"}; variable
72 ownKeys: function(target) { argument
84 handler.ownKeys = function(target) {return Object.getOwnPropertyNames(target);}; argument
92 var target = { prop1: "prop1", prop2: "prop2"}; variable
99 var target = { prop1: "prop1", prop2: "prop2"}; variable
106 var target = { prop1: "prop1", prop2: "prop2"}; variable
118 var target = { prop1: "prop1", prop2: "prop2"}; variable
120 ownKeys: function(target) { argument
[all …]
Dproxy_has.js19 var target = {}; variable
20 var handler = { has (target) { argument
57 var target = { variable
62 has: function(target, prop) { argument
72 var target = { variable
78 has: function(target, prop) { argument
92 var target = { variable
101 var target = { variable
110 var target = { variable
124 var target = { variable
[all …]
Dproxy_is_extensible.js20 var target = {}; variable
21 var handler = { isExtensible (target) { argument
84 var target = { prop1: true }; variable
86 isExtensible(target) { argument
102 isExtensible(target) { argument
119 isExtensible (target) { argument
138 isExtensible(target) { argument
144 isExtensible(target) { argument
Dproxy_prevent_extensions.js19 var target = {}; variable
20 var handler = { preventExtensions (target) { argument
77 var target = { foo: "bar" }; variable
79 preventExtensions(target) { argument
98 preventExtensions(target) { argument
115 preventExtensions(target) { argument
134 preventExtensions(target) { argument
Dproxy_set_prototoype_of.js19 var target = {}; variable
20 var handler = { setPrototypeOf (target) { argument
36 var target = { variable
41 setPrototypeOf(target, targetrProto) { argument
82 handler.setPrototypeOf = function(target, proto) { argument
144 setPrototypeOf(target, proto) { argument
Dproxy_get_prototoype_of.js19 var target = {}; variable
20 var handler = { getPrototypeOf (target) { argument
77 getPrototypeOf(target) { argument
92 getPrototypeOf(target) { argument
141 getPrototypeOf(target) { argument
156 getPrototypeOf(target) { argument
/third_party/mesa3d/src/mesa/main/
Darbprogram.c49 flush_vertices_for_program_constants(struct gl_context *ctx, GLenum target) in flush_vertices_for_program_constants()
66 lookup_or_create_program(GLuint id, GLenum target, const char* caller) in lookup_or_create_program()
107 _mesa_BindProgramARB(GLenum target, GLuint id) in _mesa_BindProgramARB()
274 get_current_program(struct gl_context* ctx, GLenum target, const char* caller) in get_current_program()
293 struct gl_program* prog, GLenum target, in get_local_param_pointer()
334 GLenum target, GLuint index, GLfloat **param) in get_env_param_pointer()
360 set_program_string(struct gl_program *prog, GLenum target, GLenum format, GLsizei len, in set_program_string()
467 _mesa_ProgramStringARB(GLenum target, GLenum format, GLsizei len, in _mesa_ProgramStringARB()
485 _mesa_NamedProgramStringEXT(GLuint program, GLenum target, GLenum format, GLsizei len, in _mesa_NamedProgramStringEXT()
502 _mesa_ProgramEnvParameter4dARB(GLenum target, GLuint index, in _mesa_ProgramEnvParameter4dARB()
[all …]
Dformatquery.c65 _legal_parameters(struct gl_context *ctx, GLenum target, GLenum internalformat, in _legal_parameters()
416 _is_target_supported(struct gl_context *ctx, GLenum target) in _is_target_supported()
483 _is_resource_supported(struct gl_context *ctx, GLenum target, in _is_resource_supported()
570 _is_internalformat_supported(struct gl_context *ctx, GLenum target, in _is_internalformat_supported()
622 GLenum target) in _legal_target_for_framebuffer_texture_layer()
652 _mesa_query_internal_format_default(struct gl_context *ctx, GLenum target, in _mesa_query_internal_format_default()
778 _equivalent_size_pname(GLenum target, in _equivalent_size_pname()
823 _get_target_dimensions(GLenum target) in _get_target_dimensions()
867 _mesa_is_multisample_target(GLenum target) in _mesa_is_multisample_target()
880 _mesa_GetInternalformativ(GLenum target, GLenum internalformat, GLenum pname, in _mesa_GetInternalformativ()
[all …]
Dtexparam.c64 validate_texture_wrap_mode(struct gl_context * ctx, GLenum target, GLenum wrap) in validate_texture_wrap_mode()
128 is_texparameteri_target_valid(GLenum target) in is_texparameteri_target_valid()
238 _mesa_target_allows_setting_sampler_parameters(GLenum target) in _mesa_target_allows_setting_sampler_parameters()
1201 _mesa_TexParameterf(GLenum target, GLenum pname, GLfloat param) in _mesa_TexParameterf()
1217 _mesa_TexParameterfv(GLenum target, GLenum pname, const GLfloat *params) in _mesa_TexParameterfv()
1233 _mesa_TexParameteri(GLenum target, GLenum pname, GLint param) in _mesa_TexParameteri()
1249 _mesa_TexParameteriv(GLenum target, GLenum pname, const GLint *params) in _mesa_TexParameteriv()
1270 _mesa_TexParameterIiv(GLenum target, GLenum pname, const GLint *params) in _mesa_TexParameterIiv()
1291 _mesa_TexParameterIuiv(GLenum target, GLenum pname, const GLuint *params) in _mesa_TexParameterIuiv()
1307 _mesa_TextureParameterfvEXT(GLuint texture, GLenum target, GLenum pname, const GLfloat *params) in _mesa_TextureParameterfvEXT()
[all …]
Dteximage.h44 _mesa_is_cube_face(GLenum target) in _mesa_is_cube_face()
58 _mesa_num_tex_faces(GLenum target) in _mesa_num_tex_faces()
77 _mesa_cube_face_target(GLenum target, unsigned face) in _mesa_cube_face_target()
94 _mesa_tex_target_to_face(GLenum target) in _mesa_tex_target_to_face()
Dtexenv.c378 _mesa_texenvfv_indexed( struct gl_context* ctx, GLuint texunit, GLenum target, in _mesa_texenvfv_indexed()
512 _mesa_TexEnvfv( GLenum target, GLenum pname, const GLfloat *param ) in _mesa_TexEnvfv()
520 _mesa_TexEnvf( GLenum target, GLenum pname, GLfloat param ) in _mesa_TexEnvf()
530 _mesa_TexEnvi( GLenum target, GLenum pname, GLint param ) in _mesa_TexEnvi()
540 _mesa_TexEnviv( GLenum target, GLenum pname, const GLint *param ) in _mesa_TexEnviv()
558 _mesa_MultiTexEnvfEXT( GLenum texunit, GLenum target, in _mesa_MultiTexEnvfEXT()
569 _mesa_MultiTexEnvfvEXT( GLenum texunit, GLenum target, in _mesa_MultiTexEnvfvEXT()
578 _mesa_MultiTexEnviEXT( GLenum texunit, GLenum target, in _mesa_MultiTexEnviEXT()
590 _mesa_MultiTexEnvivEXT( GLenum texunit, GLenum target, in _mesa_MultiTexEnvivEXT()
698 _mesa_gettexenvfv_indexed( GLuint texunit, GLenum target, GLenum pname, GLfloat *params ) in _mesa_gettexenvfv_indexed()
[all …]
/third_party/musl/libc-test/src/functionalext/supplement/ctype/
Dwctype.c30 wctype_t target = 1; in wctype_0100() local
49 wctype_t target = 2; in wctype_0200() local
68 wctype_t target = 3; in wctype_0300() local
87 wctype_t target = 4; in wctype_0400() local
106 wctype_t target = 5; in wctype_0500() local
125 wctype_t target = 6; in wctype_0600() local
144 wctype_t target = 7; in wctype_0700() local
163 wctype_t target = 8; in wctype_0800() local
182 wctype_t target = 9; in wctype_0900() local
201 wctype_t target = 10; in wctype_1000() local
[all …]
/third_party/node/src/
Dnode_constants.cc71 void DefineErrnoConstants(Local<Object> target) { in DefineErrnoConstants()
389 void DefineWindowsErrorConstants(Local<Object> target) { in DefineWindowsErrorConstants()
623 void DefineSignalConstants(Local<Object> target) { in DefineSignalConstants()
772 void DefinePriorityConstants(Local<Object> target) { in DefinePriorityConstants()
810 void DefineCryptoConstants(Local<Object> target) { in DefineCryptoConstants()
1106 void DefineSystemConstants(Local<Object> target) { in DefineSystemConstants()
1289 void DefineDLOpenConstants(Local<Object> target) { in DefineDLOpenConstants()
1311 void DefineTraceConstants(Local<Object> target) { in DefineTraceConstants()
1342 void DefineConstants(v8::Isolate* isolate, Local<Object> target) { in DefineConstants()
/third_party/protobuf/src/google/protobuf/
Dwire_format_lite.h646 int field_number, const MessageLite& value, uint8* target) { in WriteGroupToArray()
656 int field_number, const MessageLite& value, uint8* target) { in WriteMessageToArray()
885 const std::string& unknown_fields, uint8* target, in InternalSerializeUnknownMessageSetItemsToArray()
1355 uint8* target) { in WriteTagToArray()
1361 uint8* target) { in WriteInt32NoTagToArray()
1365 uint8* target) { in WriteInt64NoTagToArray()
1370 uint8* target) { in WriteUInt32NoTagToArray()
1374 uint8* target) { in WriteUInt64NoTagToArray()
1378 uint8* target) { in WriteSInt32NoTagToArray()
1383 uint8* target) { in WriteSInt64NoTagToArray()
[all …]
/third_party/gn/src/gn/
Dsubstitution_writer.cc206 const Target* target, in ApplyPatternToSource()
220 const Target* target, in ApplyPatternToSourceAsString()
239 const Target* target, in ApplyPatternToSourceAsOutputFile()
249 void SubstitutionWriter::ApplyListToSource(const Target* target, in ApplyListToSource()
260 const Target* target, in ApplyListToSourceAsString()
272 const Target* target, in ApplyListToSourceAsOutputFile()
284 const Target* target, in ApplyListToSources()
296 const Target* target, in ApplyListToSourcesAsString()
308 const Target* target, in ApplyListToSourcesAsOutputFile()
320 const Target* target, in WriteNinjaVariablesForSource()
[all …]
Dcommand_refs.cc37 for (auto* target : setup->builder().GetAllResolvedTargets()) { in FillDepMap() local
56 const Target* target, in RecursivePrintTarget()
89 const Target* target, in RecursivePrintTargetDeps()
110 const Target* target, in RecursiveCollectRefs()
119 const Target* target, in RecursiveCollectChildRefs()
128 bool TargetReferencesConfig(const Target* target, const Config* config) { in TargetReferencesConfig()
146 for (auto* target : all_targets) { in GetTargetsReferencingConfig() local
166 for (const Target* target : implicit_target_matches) { in DoTreeOutput() local
174 for (const Target* target : implicit_target_matches) { in DoTreeOutput() local
192 for (const Target* target : implicit_target_matches) in DoAllListOutput() local
[all …]
/third_party/node/test/parallel/
Dtest-eventtarget.js236 const target = new EventTarget(); constant
249 const target = new EventTarget(); constant
308 const target = new EventTarget(); constant
340 const target = new EventTarget(); constant
346 const target = new EventTarget(); constant
354 const target = new EventTarget(); constant
364 const target = new EventTarget(); constant
374 const target = new EventTarget(); constant
398 const target = new EventTarget(); constant
410 const target = new EventTarget(); constant
[all …]
/third_party/mesa3d/src/mapi/glapi/tests/
Dcheck_table.cpp1544 glGetColorTableEXT(GLenum target, GLenum format, GLenum type, GLvoid *table) in glGetColorTableEXT()
1553 glGetColorTableParameterfvEXT(GLenum target, GLenum pname, GLfloat *params) in glGetColorTableParameterfvEXT()
1561 glGetColorTableParameterivEXT(GLenum target, GLenum pname, GLint *params) in glGetColorTableParameterivEXT()
1569 gl_dispatch_stub_356(GLenum target, GLenum format, GLenum type, GLvoid * image) in gl_dispatch_stub_356()
1578 gl_dispatch_stub_357(GLenum target, GLenum pname, GLfloat * params) in gl_dispatch_stub_357()
1586 gl_dispatch_stub_358(GLenum target, GLenum pname, GLint * params) in gl_dispatch_stub_358()
1594 gl_dispatch_stub_359(GLenum target, GLenum format, GLenum type, GLvoid * row, GLvoid * column, GLvo… in gl_dispatch_stub_359()
1605 gl_dispatch_stub_361(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid * values) in gl_dispatch_stub_361()
1615 gl_dispatch_stub_362(GLenum target, GLenum pname, GLfloat * params) in gl_dispatch_stub_362()
1623 gl_dispatch_stub_363(GLenum target, GLenum pname, GLint * params) in gl_dispatch_stub_363()
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cSparseTextureTests.cpp61 …ureUtils::verifyQueryError(std::stringstream& log, const char* funcName, GLint target, GLint pname, in verifyQueryError()
104 GLint SparseTextureUtils::getTargetDepth(GLint target) in getTargetDepth()
130 void SparseTextureUtils::getTexturePageSizes(const glw::Functions& gl, glw::GLint target, glw::GLin… in getTexturePageSizes()
152 void SparseTextureUtils::getTextureLevelSize(GLint target, TextureState& state, GLint level, GLint&… in getTextureLevelSize()
178 void Texture::Bind(const Functions& gl, GLuint id, GLenum target) in Bind()
225 void Texture::Storage(const Functions& gl, GLenum target, GLsizei levels, GLenum internal_format, G… in Storage()
265 void Texture::GetData(const glw::Functions& gl, glw::GLint level, glw::GLenum target, glw::GLenum f… in GetData()
286 void Texture::SubImage(const glw::Functions& gl, glw::GLenum target, glw::GLint level, glw::GLint x… in SubImage()
372 const GLint& target = *iter; in iterate() local
397 const GLint& target = *iter; in iterate() local
[all …]
/third_party/node/deps/v8/src/baseline/ppc/
Dbaseline-assembler-ppc-inl.h22 inline bool Clobbers(Register target, MemOperand op) { in Clobbers()
139 Register rhs, Label* target) { in JumpIfHelper()
172 void BaselineAssembler::Jump(Label* target, Label::Distance distance) { in Jump()
178 Label* target, Label::Distance) { in JumpIfRoot()
184 Label* target, Label::Distance) { in JumpIfNotRoot()
189 void BaselineAssembler::JumpIfSmi(Register value, Label* target, in JumpIfSmi()
196 Label* target, in JumpIfImmediate()
202 void BaselineAssembler::JumpIfNotSmi(Register value, Label* target, in JumpIfNotSmi()
237 Label* target, Label::Distance) { in TestAndBranch()
244 Label* target, Label::Distance) { in JumpIf()
[all …]
/third_party/node/deps/v8/src/baseline/s390/
Dbaseline-assembler-s390-inl.h22 inline bool Clobbers(Register target, MemOperand op) { in Clobbers()
139 Register rhs, Label* target) { in JumpIfHelper()
172 void BaselineAssembler::Jump(Label* target, Label::Distance distance) { in Jump()
178 Label* target, Label::Distance) { in JumpIfRoot()
184 Label* target, Label::Distance) { in JumpIfNotRoot()
189 void BaselineAssembler::JumpIfSmi(Register value, Label* target, in JumpIfSmi()
196 Label* target, in JumpIfImmediate()
202 void BaselineAssembler::JumpIfNotSmi(Register value, Label* target, in JumpIfNotSmi()
237 Label* target, Label::Distance) { in TestAndBranch()
244 Label* target, Label::Distance) { in JumpIf()
[all …]

12345678910>>...105