Home
last modified time | relevance | path

Searched refs:lookup_type (Results 1 - 25 of 74) sorted by relevance

123

/third_party/mesa3d/src/broadcom/compiler/
H A Dv3d33_tex.c57 p0_unpacked.lookup_type = TEXTURE_1D_ARRAY; in v3d33_vir_emit_tex()
59 p0_unpacked.lookup_type = TEXTURE_1D; in v3d33_vir_emit_tex()
64 p0_unpacked.lookup_type = TEXTURE_2D_ARRAY; in v3d33_vir_emit_tex()
66 p0_unpacked.lookup_type = TEXTURE_2D; in v3d33_vir_emit_tex()
69 p0_unpacked.lookup_type = TEXTURE_3D; in v3d33_vir_emit_tex()
72 p0_unpacked.lookup_type = TEXTURE_CUBE_MAP; in v3d33_vir_emit_tex()
/third_party/python/Tools/gdb/
H A Dlibpython.py36 We try to defer gdb.lookup_type() invocations for python types until as late as
55 return gdb.lookup_type('char').pointer() # char*
59 return gdb.lookup_type('unsigned char').pointer() # unsigned char*
63 return gdb.lookup_type('unsigned short').pointer()
67 return gdb.lookup_type('unsigned int').pointer()
71 return gdb.lookup_type('void').pointer().sizeof
396 return gdb.lookup_type(cls._typename).pointer()
459 _PyObject_VAR_SIZE._type_size_t = gdb.lookup_type('size_t')
481 type_PyVarObject_ptr = gdb.lookup_type('PyVarObject').pointer()
505 PyDictValuesPtrPtr = gdb.lookup_type("PyDictValue
[all...]
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbio_addr.c624 enum BIO_lookup_type lookup_type, in BIO_lookup()
627 return BIO_lookup_ex(host, service, lookup_type, family, socktype, 0, res); in BIO_lookup()
634 * @lookup_type: declare intent with the result, client or server.
652 int BIO_lookup_ex(const char *host, const char *service, int lookup_type, in BIO_lookup_ex() argument
704 if (lookup_type == BIO_LOOKUP_SERVER) in BIO_lookup_ex()
792 switch(lookup_type) { in BIO_lookup_ex()
623 BIO_lookup(const char *host, const char *service, enum BIO_lookup_type lookup_type, int family, int socktype, BIO_ADDRINFO **res) BIO_lookup() argument
/third_party/openssl/crypto/bio/
H A Dbio_addr.c624 enum BIO_lookup_type lookup_type, in BIO_lookup()
627 return BIO_lookup_ex(host, service, lookup_type, family, socktype, 0, res); in BIO_lookup()
634 * @lookup_type: declare intent with the result, client or server.
652 int BIO_lookup_ex(const char *host, const char *service, int lookup_type, in BIO_lookup_ex() argument
704 if (lookup_type == BIO_LOOKUP_SERVER) in BIO_lookup_ex()
792 switch(lookup_type) { in BIO_lookup_ex()
623 BIO_lookup(const char *host, const char *service, enum BIO_lookup_type lookup_type, int family, int socktype, BIO_ADDRINFO **res) BIO_lookup() argument
/third_party/libabigail/src/
H A Dabg-ctf-reader.cc184 lookup_type(ctf_dict_t *dic, ctf_id_t ctf_type) in lookup_type() function in abigail::ctf::reader
530 if ((result = lookup_type(ctf_dictionary, ctf_type))) in process_ctf_type()
633 type_base_sptr result = lookup_type(ctf_dictionary, ctf_type); in build_type()
741 (rdr->lookup_type(ctf_dictionary, ctf_type)); in process_ctf_typedef()
925 (rdr->lookup_type(ctf_dictionary, ctf_type)); in process_ctf_function_type()
1279 (rdr->lookup_type(ctf_dictionary, ctf_type)); in process_ctf_array_type()
1377 (rdr->lookup_type(ctf_dictionary, ctf_type)); in process_ctf_qualified_type()
1439 (rdr->lookup_type(ctf_dictionary, ctf_type)); in process_ctf_pointer_type()
/third_party/node/deps/v8/tools/
H A Dgdb-v8-support.py62 t_u32 = gdb.lookup_type('unsigned int')
63 t_u64 = gdb.lookup_type('unsigned long long')
/third_party/libabigail/include/
H A Dabg-fwd.h1326 lookup_type(const string&, const translation_unit&);
1329 lookup_type(const type_base_sptr, const translation_unit&);
1332 lookup_type(const interned_string&, const corpus&);
1338 lookup_type(const type_base&, const corpus&);
1341 lookup_type(const type_base_sptr&, const corpus&);
/third_party/ltp/tools/sparse/sparse-src/
H A Dexpression.c400 if (lookup_type(token)) { in generic_selection()
518 if (token->special == '[' && lookup_type(token->next)) { in primary_expression()
637 if (!match_op(token, '(') || !lookup_type(token->next)) in type_info_expression()
761 if (lookup_type(next)) { in cast_expression()
H A Dexpression.h322 static inline int lookup_type(struct token *token) in lookup_type() function
H A Dparse.c1057 if (lookup_type(token->next)) { in typeof_specifier()
1401 if (lookup_type(token->next)) { in alignas_specifier()
1719 if (lookup_type(next)) in is_nested()
1741 if (lookup_type(next)) in which_func()
2252 if (lookup_type(token)) { in parse_for_statement()
2525 if (lookup_type(token)) { in statement_list()
2553 lookup_type(token->next)) in identifier_list()
2860 } while (lookup_type(token)); in parse_k_r_arguments()
2970 if (lookup_type(token)) in external_declaration()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-layout-gsub-table.hh1463 typename context_t::return_t dispatch (context_t *c, unsigned int lookup_type, Ts&&... ds) const
1465 TRACE_DISPATCH (this, lookup_type);
1466 switch (lookup_type) {
1479 bool intersects (const hb_set_t *glyphs, unsigned int lookup_type) const
1482 return dispatch (&c, lookup_type);
1508 static inline bool lookup_type_is_reverse (unsigned int lookup_type)
1509 { return lookup_type == SubTable::ReverseChainSingle; }
H A Dhb-ot-layout-common.hh1285 unsigned int lookup_type = get_type (); in dispatch() local
1286 TRACE_DISPATCH (this, lookup_type); in dispatch()
1289 typename context_t::return_t r = get_subtable<TSubTable> (i).dispatch (c, lookup_type, std::forward<Ts> (ds)...); in dispatch()
1297 unsigned int lookup_type, in serialize()
1303 lookupType = lookup_type; in serialize()
1325 unsigned int lookup_type = get_type (); in subset() local
1327 | hb_filter ([this, glyphset, lookup_type] (const Offset16To<TSubTable> &_) { return (this+_).intersects (glyphset, lookup_type); }) in subset()
1328 | hb_apply (subset_offset_array (c, out->get_subtables<TSubTable> (), this, lookup_type)) in subset()
/third_party/ffmpeg/libavcodec/
H A Dvorbisdec.c52 uint8_t lookup_type; member
351 codebook_setup->lookup_type = get_bits(gb, 4); in vorbis_parse_setup_hdr_codebooks()
353 ff_dlog(NULL, " lookup type: %d : %s \n", codebook_setup->lookup_type, in vorbis_parse_setup_hdr_codebooks()
354 codebook_setup->lookup_type ? "vq" : "no lookup"); in vorbis_parse_setup_hdr_codebooks()
358 if (codebook_setup->lookup_type == 1) { in vorbis_parse_setup_hdr_codebooks()
429 } else if (codebook_setup->lookup_type >= 2) { in vorbis_parse_setup_hdr_codebooks()
/third_party/openssl/ohos_lite/include/openssl/
H A Dbio.h672 enum BIO_lookup_type lookup_type,
675 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm_avx2/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/no-asm/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/
H A Dbio.h756 enum BIO_lookup_type lookup_type,
759 int lookup_type, int family, int socktype, int protocol,

Completed in 74 milliseconds

123