/third_party/python/Objects/ |
H A D | unicodectype.c | 64 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); in _PyUnicode_ToTitlecase() local 66 if (ctype->flags & EXTENDED_CASE_MASK) in _PyUnicode_ToTitlecase() 67 return _PyUnicode_ExtendedCase[ctype->title & 0xFFFF]; in _PyUnicode_ToTitlecase() 68 return ch + ctype->title; in _PyUnicode_ToTitlecase() 76 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); in _PyUnicode_IsTitlecase() local 78 return (ctype->flags & TITLE_MASK) != 0; in _PyUnicode_IsTitlecase() 86 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); in _PyUnicode_IsXidStart() local 88 return (ctype->flags & XID_START_MASK) != 0; in _PyUnicode_IsXidStart() 96 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); in _PyUnicode_IsXidContinue() local 98 return (ctype in _PyUnicode_IsXidContinue() 106 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_ToDecimalDigit() local 123 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_ToDigit() local 140 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_IsNumeric() local 160 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_IsPrintable() local 170 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_IsLowercase() local 180 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_IsUppercase() local 190 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_ToUppercase() local 202 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_ToLowercase() local 211 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_ToLowerFull() local 227 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_ToTitleFull() local 243 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_ToUpperFull() local 259 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_ToFoldedFull() local 274 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_IsCased() local 281 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_IsCaseIgnorable() local 291 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); _PyUnicode_IsAlpha() local [all...] |
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | evaluate.c | 32 #include <ctype.h> 55 return expr && valid_type(expr->ctype); in valid_expr_type() 64 static struct symbol *unqualify_type(struct symbol *ctype) in unqualify_type() argument 66 if (!ctype) in unqualify_type() 67 return ctype; in unqualify_type() 68 if (ctype->type == SYM_NODE && (ctype->ctype.modifiers & MOD_QUALIFIER)) { in unqualify_type() 69 struct symbol *unqual = alloc_symbol(ctype->pos, 0); in unqualify_type() 71 *unqual = *ctype; in unqualify_type() 470 struct symbol *ctype = NULL; restricted_binop_type() local 508 unrestrict(struct expression *expr, int class, struct symbol **ctype) unrestrict() argument 527 struct symbol *ctype; usual_conversions() local 568 struct symbol *ctype, *base; evaluate_ptr_add() local 872 struct symbol *ctype; evaluate_conditional() local 917 struct symbol *ltype, *rtype, *ctype; evaluate_binop() local 1030 struct symbol *ctype; evaluate_compare() local 1135 struct symbol *ctype, *ltype, *rtype, *lbase, *rbase; evaluate_conditional_expression() local 1695 struct symbol *ctype, *base; degenerate() local 1777 struct symbol *ctype; evaluate_addressof() local 1806 struct symbol *ctype = op->ctype, *node, *target; evaluate_dereference() local 1869 struct symbol *ctype = op->ctype; evaluate_postop() local 1905 struct symbol *ctype = expr->unop->ctype; evaluate_sign() local 1936 struct symbol *ctype = expr->unop->ctype; evaluate_preop() local 2013 struct symbol *ctype = sym->ctype.base_type; find_identifier() local 2068 struct symbol *ctype, *member; evaluate_member_dereference() local 2336 struct symbol *ctype, *target; evaluate_arguments() local 2414 first_subobject(struct symbol *ctype, int class, struct expression **v) first_subobject() argument 2450 check_designators(struct expression *e, struct symbol *ctype) check_designators() argument 2517 next_designators(struct expression *old, struct symbol *ctype, struct expression *e, struct expression **v) next_designators() argument 2595 handle_list_initializer(struct expression *expr, int class, struct symbol *ctype, unsigned long mods) handle_list_initializer() argument 2750 handle_initializer(struct expression **ep, int nested, int class, struct symbol *ctype, unsigned long mods) handle_initializer() argument 2846 evaluate_initializer(struct symbol *ctype, struct expression **ep) evaluate_initializer() argument 2860 struct symbol *ctype; cast_to_bool() local 2974 struct symbol *ctype; evaluate_cast() local 3147 struct symbol *ctype = fn->ctype; evaluate_symbol_call() local 3161 struct symbol *ctype, *sym; evaluate_call() local 3220 struct symbol *ctype = expr->in; evaluate_offsetof() local [all...] |
H A D | symbol.c | 52 if (sym->ctype.modifiers & MOD_INLINE) { in access_symbol() 113 sym = sym->ctype.base_type; in bitfield_base_size() 115 sym = sym->ctype.base_type; in bitfield_base_size() 142 alignment = info->packed ? 1 : sym->ctype.alignment; in lay_out_struct() 160 sym->ctype.base_type->bit_offset = bit_offset; in lay_out_struct() 186 unsigned long mod = sym->ctype.modifiers & MOD_QUALIFIER; in examine_anonymous_member() 190 sym = sym->ctype.base_type; in examine_anonymous_member() 196 sub->ctype.modifiers |= mod; in examine_anonymous_member() 218 if (member->ctype.base_type == &autotype_ctype) { in examine_struct_union_type() 220 member->ctype in examine_struct_union_type() 957 const struct ctype_declare *ctype; init_ctype() local [all...] |
H A D | parse.c | 33 #include <ctype.h> 591 sym->ctype.modifiers = kw->mods; in init_keyword() 592 sym->ctype.base_type = kw->type; in init_keyword() 672 static void apply_ctype(struct position pos, struct ctype *dst, struct ctype *src); 676 struct symbol *ctype; in apply_modifiers() local 679 ctype = ctx->mode->to_mode(ctx->ctype.base_type); in apply_modifiers() 680 if (!ctype) in apply_modifiers() 682 show_typename(ctx->ctype in apply_modifiers() 688 alloc_indirect_symbol(struct position pos, struct ctype *ctype, int type) alloc_indirect_symbol() argument 896 struct symbol *ctype; cast_enum_list() local 914 struct symbol *ctype = NULL, *base_type = NULL; parse_enum_declaration() local 1042 struct ctype *ctype = &ctx->ctype.base_type->ctype; enum_specifier() local 1195 to_QI_mode(struct symbol *ctype) to_QI_mode() argument 1205 to_HI_mode(struct symbol *ctype) to_HI_mode() argument 1213 to_SI_mode(struct symbol *ctype) to_SI_mode() argument 1221 to_DI_mode(struct symbol *ctype) to_DI_mode() argument 1229 to_TI_mode(struct symbol *ctype) to_TI_mode() argument 1237 to_pointer_mode(struct symbol *ctype) to_pointer_mode() argument 1245 to_word_mode(struct symbol *ctype) to_word_mode() argument 1775 struct ctype *ctype = &ctx->ctype; direct_declarator() local 1848 struct ctype *ctype = &ctx->ctype; handle_bitfield() local [all...] |
H A D | symbol.h | 98 struct ctype { struct 107 struct ctype ctype; member 200 struct ctype ctype; member 330 extern const char * type_difference(struct ctype *c1, struct ctype *c2, 357 extern const char *builtin_ctypename(struct ctype *ctype); 365 static inline int valid_type(const struct symbol *ctype) in valid_type() argument 547 extend_value(long long val, struct symbol *ctype) extend_value() argument [all...] |
H A D | expand.c | 32 #include <ctype.h> 78 return (sym->ctype.modifiers & (MOD_STATIC | MOD_EXTERN)) ? 2 : 1; in expand_symbol_expression() 83 int no_expand = expr->ctype->ctype.modifiers & MOD_UNSIGNED; in get_longlong() 84 long long mask = 1ULL << (expr->ctype->bit_size - 1); in get_longlong() 176 struct symbol *ctype = expr->ctype; in check_shift_count() local 179 if (count >= 0 && count < ctype->bit_size) in check_shift_count() 191 static int simplify_int_binop(struct expression *expr, struct symbol *ctype) in simplify_int_binop() argument 208 is_signed = !(ctype in simplify_int_binop() 307 simplify_cmp_binop(struct expression *expr, struct symbol *ctype) simplify_cmp_binop() argument 388 simplify_float_cmp(struct expression *expr, struct symbol *ctype) simplify_float_cmp() argument 732 struct symbol *ctype = expr->ctype; expand_dereference() local 888 struct symbol *ctype = fn->ctype; expand_symbol_call() local 1377 struct symbol *ctype; __get_expression_value() local 1428 struct symbol *ctype; expr_truth_value() local [all...] |
H A D | builtin.c | 38 t = t->ctype.base_type; in is_dynamic_type() 44 expr->ctype = &int_ctype; in evaluate_to_int_const_expr() 89 sym = expr->fn->ctype; in eval_args() 96 struct symbol *fntype = expr->fn->ctype->ctype.base_type; in args_prototype() 230 switch (expr->ctype->bit_size) { in expand_bswap() 260 switch (arg->ctype->bit_size) { \ 295 if (!is_float_type(arg->ctype)) { in evaluate_fp_unop() 297 show_ident(expr->fn->ctype->ident)); in evaluate_fp_unop() 338 if (!arg || !(type = arg->ctype)) in evaluate_overflow_gen() 408 struct symbol *ctype = NULL; evaluate_generic_int_op() local 460 struct symbol *ctype = NULL; eval_atomic_common() local [all...] |
H A D | show-parse.c | 31 #include <ctype.h> 75 sym->bit_size, sym->ctype.alignment, in do_debug_symbol() 76 modifier_string(sym->ctype.modifiers), show_ident(sym->ident), in do_debug_symbol() 77 show_as(sym->ctype.as), in do_debug_symbol() 81 FOR_EACH_PTR(sym->ctype.contexts, context) { in do_debug_symbol() 98 do_debug_symbol(sym->ctype.base_type, indent+2); in do_debug_symbol() 180 printf("\t%s:%d:%ld at offset %ld.%d", show_ident(sym->ident), sym->bit_size, sym->ctype.alignment, sym->offset, sym->bit_offset); in show_struct_member() 293 const char *builtin_ctypename(struct ctype *ctype) in builtin_ctypename() argument 298 if (&typenames[i].sym->ctype in builtin_ctypename() 1064 struct symbol *ctype = expr->init_expr->ctype; show_position_expr() local 1075 show_initializer_expr(struct expression *expr, struct symbol *ctype) show_initializer_expr() argument [all...] |
H A D | sparse-llvm.c | 32 return symbol_type(sym->ctype.base_type); in func_return_type() 44 struct symbol *arg_sym = arg->ctype.base_type; in sym_func_type() 57 base_type = sym->ctype.base_type; in sym_array_type() 119 if (is_void_type(sym->ctype.base_type)) in sym_ptr_type() 122 type = symbol_type(sym->ctype.base_type); in sym_ptr_type() 181 return symbol_type(sym->ctype.base_type); in symbol_type() 192 ret = symbol_type(sym->ctype.base_type); in symbol_type() 242 if (sym->ctype.modifiers & MOD_STATIC) in data_linkage() 250 if (sym->ctype.modifiers & MOD_STATIC) in function_linkage() 355 static LLVMValueRef val_to_value(unsigned long long val, struct symbol *ctype) in val_to_value() argument 369 pseudo_to_value(struct function *fn, struct symbol *ctype, pseudo_t pseudo) pseudo_to_value() argument 403 pseudo_to_rvalue(struct function *fn, struct symbol *ctype, pseudo_t pseudo) pseudo_to_rvalue() argument 413 value_to_ivalue(struct function *fn, struct symbol *ctype, LLVMValueRef val) value_to_ivalue() argument 428 value_to_pvalue(struct function *fn, struct symbol *ctype, LLVMValueRef val) value_to_pvalue() argument 447 adjust_type(struct function *fn, struct symbol *ctype, LLVMValueRef val) adjust_type() argument 460 get_operand(struct function *fn, struct symbol *ctype, pseudo_t pseudo) get_operand() argument 471 get_ioperand(struct function *fn, struct symbol *ctype, pseudo_t pseudo) get_ioperand() argument 800 struct symbol *ctype; output_op_call() local [all...] |
H A D | linearize.c | 30 static pseudo_t add_binary_op(struct entrypoint *ep, struct symbol *ctype, int op, pseudo_t left, pseudo_t right); 600 if (sym->ctype.modifiers & (MOD_EXTERN | MOD_STATIC | MOD_ADDRESSABLE)) in show_entry() 901 struct symbol *type; // ctype 934 base = base->ctype.base_type; in bitfield_base_type() 936 base = base->ctype.base_type; in bitfield_base_type() 954 struct symbol *ctype = expr->ctype; in linearize_address_gen() local 956 if (!ctype) in linearize_address_gen() 958 ad->type = ctype; in linearize_address_gen() 979 insn->is_volatile = ad->type && (ad->type->ctype in add_load() 1001 linearize_bitfield_insert(struct entrypoint *ep, pseudo_t ori, pseudo_t val, struct symbol *ctype, struct symbol *btype) linearize_bitfield_insert() argument 1024 struct symbol *ctype = ad->type; linearize_store_gen() local 1057 add_binary_op(struct entrypoint *ep, struct symbol *ctype, int op, pseudo_t left, pseudo_t right) add_binary_op() argument 1068 add_cmp_op(struct entrypoint *ep, struct symbol *ctype, int op, struct symbol *itype, pseudo_t left, pseudo_t right) add_cmp_op() argument 1075 add_setval(struct entrypoint *ep, struct symbol *ctype, struct expression *val) add_setval() argument 1085 add_setfval(struct entrypoint *ep, struct symbol *ctype, long double fval) add_setfval() argument 1106 linearize_bitfield_extract(struct entrypoint *ep, pseudo_t val, struct symbol *ctype, struct symbol *btype) linearize_bitfield_extract() argument 1121 struct symbol *ctype = ad->type; linearize_load_gen() local 1170 add_unop(struct entrypoint *ep, struct symbol *ctype, int op, pseudo_t src) add_unop() argument 1206 struct symbol *ctype = expr->ctype; linearize_regular_preop() local 1408 map_opcode(int opcode, struct symbol *ctype) map_opcode() argument 1455 struct symbol *ctype; linearize_assignment() local 1497 struct ctype *ctype = NULL; linearize_call_expression() local 1706 insert_phis(struct basic_block *bb, pseudo_t src, struct symbol *ctype, struct instruction *node) insert_phis() argument 1720 struct symbol *ctype = expr->ctype; linearize_logical() local 1995 add_return(struct entrypoint *ep, struct basic_block *bb, struct symbol *ctype, pseudo_t src) add_return() argument [all...] |
H A D | compile-i386.c | 45 #include <ctype.h> 115 struct symbol *ctype; member 194 struct symbol *ctype, const char *comment); 330 return get_regclass_bits(expr->ctype->bit_size); in get_regclass() 378 emit_move(value, reg, value->ctype, "reload register"); in get_reg_value() 806 struct symbol *base_type = sym->ctype.base_type; in emit_func_pre() 858 if ((sym->ctype.modifiers & MOD_STATIC) == 0) in emit_func_post() 968 struct symbol *base_type = sym->ctype.base_type; in emit_initializer() 1051 struct symbol *base_type = sym->ctype.base_type; in emit_array() 1061 emit_object_pre(show_ident(sym->ident), sym->ctype in emit_array() 1086 emit_copy(struct storage *dest, struct storage *src, struct symbol *ctype) emit_copy() argument 1154 emit_move(struct storage *src, struct storage *dest, struct symbol *ctype, const char *comment) emit_move() argument 2280 struct symbol *ctype = expr->init_expr->ctype; x86_position_expr() local 2288 x86_initializer_expr(struct expression *expr, struct symbol *ctype) x86_initializer_expr() argument [all...] |
H A D | dissect.c | 85 int wptr = is_ptr(type) && !(type->ctype.modifiers & MOD_CONST); in u_lval() 96 if (!type->ctype.base_type) in fix_mode() 125 struct symbol *ret = mem->ctype.base_type; in report_member() 159 if (!sym->ctype.base_type) in expr_symbol() 160 sym->ctype.base_type = &bad_ctype; in expr_symbol() 212 while ((base = node->ctype.base_type) != NULL) in examine_sym_node() 215 node->ctype.base_type = in examine_sym_node() 265 return sym->ctype.base_type // builtin_fn_type in base_type() 280 node = __lookup_member(node->ctype.base_type, name, NULL); in __lookup_member() 303 .ctype in lookup_member() [all...] |
H A D | expression.c | 31 #include <ctype.h> 120 array->ctype.base_type = &char_ctype; in handle_func() 121 array->ctype.alignment = 1; in handle_func() 124 decl->ctype.base_type = array; in handle_func() 125 decl->ctype.alignment = 1; in handle_func() 126 decl->ctype.modifiers = MOD_STATIC; in handle_func() 140 decl->initializer->ctype = decl; in handle_func() 353 expr->ctype = ctype_integer(size, want_unsigned); in get_number_value() 369 expr->ctype = &float_ctype; in get_number_value() 371 expr->ctype in get_number_value() [all...] |
/third_party/rust/crates/foreign-types/foreign-types/src/ |
H A D | lib.rs | 211 type CType = $ctype:ty; 220 pub struct $owned(*mut $ctype); 224 type CType = $ctype; 228 unsafe fn from_ptr(ptr: *mut $ctype) -> $owned { in from_ptr() 233 fn as_ptr(&self) -> *mut $ctype { in as_ptr() 250 let handle: *mut $ctype = $clone(self.0); in clone() 261 let handle: *mut $ctype = $clone($crate::ForeignTypeRef::as_ptr(self)); in to_owned() 303 type CType = $ctype;
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-typedarray.cc | 134 #define TYPED_ARRAY_SORT(Type, type, TYPE, ctype) \ in RUNTIME_FUNCTION() 136 ctype* data = copy_data ? reinterpret_cast<ctype*>(data_copy_ptr) \ in RUNTIME_FUNCTION() 137 : static_cast<ctype*>(array->DataPtr()); \ in RUNTIME_FUNCTION() 140 if (COMPRESS_POINTERS_BOOL && alignof(ctype) > kTaggedSize) { \ in RUNTIME_FUNCTION() 142 std::sort(UnalignedSlot<ctype>(data), \ in RUNTIME_FUNCTION() 143 UnalignedSlot<ctype>(data + length), CompareNum<ctype>); \ in RUNTIME_FUNCTION() 145 std::sort(data, data + length, CompareNum<ctype>); \ in RUNTIME_FUNCTION() 148 if (COMPRESS_POINTERS_BOOL && alignof(ctype) > kTaggedSiz in RUNTIME_FUNCTION() [all...] |
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-struct.h | 145 #define LSM_LIST(ptype, pname, ctype, cname, lejp_cb, cmap, qname) \ 151 sizeof (ctype), \ 152 offsetof(ctype, cname), \ 157 #define LSM_CHILD_PTR(ptype, pname, ctype, lejp_cb, cmap, qname) \ 163 sizeof (ctype), \ 169 #define LSM_SCHEMA(ctype, lejp_cb, map, schema_name) \ 175 sizeof (ctype), \ 181 #define LSM_SCHEMA_DLL2(ctype, cdll2mem, lejp_cb, map, schema_name) \ 186 offsetof(ctype, cdll2mem), \ 187 sizeof (ctype), \ [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-value.h | 98 #define DEFINE_TYPE_SPECIFIC_METHODS(name, localtype, ctype) \ 99 explicit WasmValue(ctype v) : type_(localtype), bit_pattern_{} { \ 100 static_assert(sizeof(ctype) <= sizeof(bit_pattern_), \ 102 base::WriteUnalignedValue<ctype>(reinterpret_cast<Address>(bit_pattern_), \ 105 ctype to_##name() const { \ 109 ctype to_##name##_unchecked() const { \ 110 return base::ReadUnalignedValue<ctype>( \ 217 #define DECLARE_CAST(name, localtype, ctype, ...) \ 219 inline ctype WasmValue::to_unchecked() const { \ 223 inline ctype WasmValu [all...] |
/third_party/FreeBSD/sys/dev/usb/implementation/ |
H A D | usb_init.c | 40 controller_type ctype; member 112 usb_info.ctype = (controller_type)0xFFFF; in usbinfo_clean() 246 usb_init(controller_type ctype, device_type dtype) in usb_init() argument 255 dprintf("\n duplicate usb_init %s, ctype:%d dtype:%d\n", __FUNCTION__, usb_info.ctype, usb_info.dtype); in usb_init() 270 if (ctype == HOST) { in usb_init() 298 usb_info.ctype = ctype; in usb_init() 328 if (usb_info.ctype == HOST) { in usb_deinit()
|
/third_party/ltp/tools/sparse/ |
H A D | sparse-ltp.c | 18 #include <ctype.h> 118 const unsigned long mod = sym->ctype.modifiers; in check_symbol_visibility() 159 switch (sym->ctype.base_type->type) { in unwrap_base_type() 163 return unwrap_base_type(sym->ctype.base_type); in unwrap_base_type() 165 return sym->ctype.base_type; in unwrap_base_type() 210 if (!sym->ctype.base_type) in check_test_struct() 213 ctype_name = sym->ctype.base_type->ident; in check_test_struct() 233 switch (entry->ctype->ctype.base_type->type) { in check_test_struct()
|
/third_party/python/Lib/email/ |
H A D | message.py | 609 ctype = _splitparam(value)[0].lower() 611 if ctype.count('/') != 1: 613 return ctype 621 ctype = self.get_content_type() 622 return ctype.split('/')[0] 630 ctype = self.get_content_type() 631 return ctype.split('/')[1] 642 def set_default_type(self, ctype): 645 ctype should be either "text/plain" or "message/rfc822", although this 649 self._default_type = ctype [all...] |
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
H A D | FieldOptions.php | 19 * The ctype option instructs the C++ code generator to use a different 24 * Generated from protobuf field <code>optional .google.protobuf.FieldOptions.CType ctype = 1 [default = STRING];</code> 26 protected $ctype = null; variable 109 * @type int $ctype 110 * The ctype option instructs the C++ code generator to use a different 173 * The ctype option instructs the C++ code generator to use a different 178 * Generated from protobuf field <code>optional .google.protobuf.FieldOptions.CType ctype = 1 [default = STRING];</code> 183 return isset($this->ctype) ? $this->ctype : 0; 188 return isset($this->ctype); 209 $this->ctype = $var; global() variable [all...] |
/third_party/curl/docs/examples/ |
H A D | crawler.c | 164 int is_html(char *ctype) in is_html() argument 166 return ctype != NULL && strlen(ctype) > 10 && strstr(ctype, "text/html"); in is_html() 208 char *ctype; in main() local 209 curl_easy_getinfo(handle, CURLINFO_CONTENT_TYPE, &ctype); in main() 210 printf("[%d] HTTP 200 (%s): %s\n", complete, ctype, url); in main() 211 if(is_html(ctype) && mem->size > 100) { in main()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | macros.rs | 137 type CType = $ctype:ty; 149 type CType = $ctype; 168 type CType = $ctype:ty; 178 pub struct $owned<T>(*mut $ctype, ::std::marker::PhantomData<T>); 182 type CType = $ctype; 186 unsafe fn from_ptr(ptr: *mut $ctype) -> $owned<T> { in from_ptr() 191 fn as_ptr(&self) -> *mut $ctype { in as_ptr() 208 let handle: *mut $ctype = $clone(self.0); in clone() 219 let handle: *mut $ctype = in to_owned() 262 type CType = $ctype; [all...] |
/third_party/ltp/testcases/network/nfs/nfslock01/ |
H A D | nfs_flock_dgen.c | 20 int i, j, k, nlines, nchars, ctype; in main() local 25 fprintf(stderr, "usage: <nfs_flock_dgen> <file> <char/line> <lines> <ctype>\n"); in main() 33 ctype = atoi(argv[4]); in main() 52 if (ctype) in main() 62 if (!ctype) { in main()
|
/third_party/ltp/tools/sparse/sparse-src/validation/backend/ |
H A D | struct.c | 1 struct ctype { struct 8 struct ctype ctype; member
|