HomeSort by relevance Sort by last modified time
    Searched defs:arg_type (Results 1 - 25 of 26) sorted by null

1 2

  /external/bluetooth/bluedroid/bta/ag/
bta_ag_at.c 86 UINT8 arg_type; local
107 arg_type = BTA_AG_AT_NONE;
113 arg_type = BTA_AG_AT_READ;
121 arg_type = BTA_AG_AT_TEST;
126 arg_type = BTA_AG_AT_SET;
135 arg_type = BTA_AG_AT_FREE;
139 if ((arg_type & p_cb->p_at_tbl[idx].arg_type) != 0)
142 if (arg_type == BTA_AG_AT_SET &&
155 (*p_cb->p_cmd_cback)(p_cb->p_user, idx, arg_type, p_arg, int_arg)
    [all...]
bta_ag_at.h 50 UINT8 arg_type; /* allowable argument type syntax */ member in struct:__anon5025
57 typedef void (tBTA_AG_AT_CMD_CBACK)(void *p_user, UINT16 cmd, UINT8 arg_type,
  /art/compiler/llvm/
intrinsic_helper.cc 109 ::llvm::Type* arg_type[kIntrinsicMaxArgc]; local
123 arg_type[num_args++] = GetLLVMTypeOfIntrinsicValType(irb, type);
132 ::llvm::ArrayRef< ::llvm::Type*>(arg_type, num_args),
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/llvm/
invocation.cpp 215 llvm::Type *arg_type = arg.getType(); local
217 unsigned arg_size = TD.getTypeStoreSize(arg_type);
219 if (llvm::isa<llvm::PointerType>(arg_type) && arg.hasByValAttr()) {
220 arg_type =
221 llvm::dyn_cast<llvm::PointerType>(arg_type)->getElementType();
224 if (arg_type->isPointerTy()) {
228 unsigned address_space = llvm::cast<llvm::PointerType>(arg_type)->getAddressSpace();
  /external/lldb/source/Commands/
CommandObjectHelp.cpp 40 command_arg.arg_type = eArgTypeCommandName;
176 const CommandArgumentType arg_type = CommandObject::LookupArgumentName (command.GetArgumentAtIndex (0)); local
177 if (arg_type != eArgTypeLastArg)
180 CommandObject::GetArgumentHelp (output_strm, arg_type, m_interpreter);
  /external/ltrace/
type.h 29 enum arg_type { enum
46 enum arg_type type;
72 struct arg_type_info *type_get_simple(enum arg_type type);
138 int type_is_integral(enum arg_type type);
141 int type_is_signed(enum arg_type type);
  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
invocation.cpp 215 llvm::Type *arg_type = arg.getType(); local
217 unsigned arg_size = TD.getTypeStoreSize(arg_type);
219 if (llvm::isa<llvm::PointerType>(arg_type) && arg.hasByValAttr()) {
220 arg_type =
221 llvm::dyn_cast<llvm::PointerType>(arg_type)->getElementType();
224 if (arg_type->isPointerTy()) {
228 unsigned address_space = llvm::cast<llvm::PointerType>(arg_type)->getAddressSpace();
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_logic.c 496 LLVMTypeRef arg_type; local
506 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 4);
510 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 8);
516 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 2);
520 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 4);
523 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 16);
526 if (arg_type != bld->int_vec_type) {
527 mask = LLVMBuildBitCast(builder, mask, arg_type, "");
530 if (arg_type != bld->vec_type) {
531 a = LLVMBuildBitCast(builder, a, arg_type, "");
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_logic.c 496 LLVMTypeRef arg_type; local
506 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 4);
510 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 8);
516 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 2);
520 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 4);
523 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 16);
526 if (arg_type != bld->int_vec_type) {
527 mask = LLVMBuildBitCast(builder, mask, arg_type, "");
530 if (arg_type != bld->vec_type) {
531 a = LLVMBuildBitCast(builder, a, arg_type, "");
    [all...]
  /external/bison/lib/
printf-args.h 88 } arg_type; typedef in typeref:enum:__anon4964
93 arg_type type;
  /external/bluetooth/bluedroid/bta/hf_client/
bta_hf_client_at.h 31 UINT8 arg_type; /* allowable argument type syntax */ member in struct:__anon5222
38 typedef void (tBTA_AG_AT_CMD_CBACK)(void *p_user, UINT16 cmd, UINT8 arg_type,
  /external/e2fsprogs/intl/
printf-args.h 75 } arg_type; typedef in typeref:enum:__anon25073
80 arg_type type;
  /external/chromium_org/sandbox/linux/bpf_dsl/
bpf_dsl.cc 268 const ErrorCode::ArgType arg_type = local
271 return BoolExpr(new const PrimitiveBoolExprImpl(num, arg_type, mask, val));
  /external/lldb/include/lldb/Interpreter/
CommandObject.h 54 lldb::CommandArgumentType arg_type; member in struct:lldb_private::CommandObject::ArgumentTableEntry
63 lldb::CommandArgumentType arg_type; member in struct:lldb_private::CommandObject::CommandArgumentData
67 arg_type(lldb::eArgTypeNone),
90 GetArgumentTypeAsCString (const lldb::CommandArgumentType arg_type);
93 GetArgumentDescriptionAsCString (const lldb::CommandArgumentType arg_type);
196 FindArgumentDataByType (lldb::CommandArgumentType arg_type);
205 GetArgumentHelp (Stream &str, lldb::CommandArgumentType arg_type, CommandInterpreter &interpreter);
208 GetArgumentName (lldb::CommandArgumentType arg_type);
  /external/lldb/source/Interpreter/
Options.cpp 664 CommandArgumentType arg_type = opt_defs[i].argument_type; local
667 arg_name_str.Printf ("<%s>", CommandObject::GetArgumentName (arg_type));
    [all...]
CommandObject.cpp 494 CommandObject::FindArgumentDataByType (CommandArgumentType arg_type)
499 if (table[i].arg_type == arg_type)
506 CommandObject::GetArgumentHelp (Stream &str, CommandArgumentType arg_type, CommandInterpreter &interpreter)
509 ArgumentTableEntry *entry = (ArgumentTableEntry *) &(table[arg_type]);
511 // The table is *supposed* to be kept in arg_type order, but someone *could* have messed it up...
513 if (entry->arg_type != arg_type)
514 entry = CommandObject::FindArgumentDataByType (arg_type);
541 CommandObject::GetArgumentName (CommandArgumentType arg_type)
554 str << "Arg name for type (" << arg_type << ") not in arg table!"; local
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCTypeVendor.cpp 393 clang::QualType arg_type = BuildType(ast_ctx, m_type_vector[ai].c_str()); local
395 if (arg_type.isNull())
403 arg_type,
  /frameworks/base/tools/aidl/
aidl_language.h 34 typedef struct arg_type { struct
39 struct arg_type *next;
40 } arg_type; typedef in typeref:struct:arg_type
58 arg_type* args;
112 arg_type *arg;
  /art/runtime/interpreter/
interpreter_common.cc 585 Class* arg_type = mh.GetClassFromTypeIdx(params->GetTypeItem(shorty_pos).type_idx_); local
586 if (arg_type == NULL) {
590 if (!o->VerifierInstanceOf(arg_type)) {
598 arg_type->GetDescriptor(&temp2));
    [all...]
  /external/chromium_org/base/debug/
trace_event_impl.cc 386 unsigned char arg_type; local
388 ::trace_event_internal::SetTraceValue(value, &arg_type, &arg_value);
393 num_args, &arg_name, &arg_type, &arg_value, NULL,
    [all...]
  /external/lldb/tools/driver/
Driver.cpp 271 CommandArgumentType arg_type = option_table[i].argument_type; local
272 const char *arg_name = SBCommandInterpreter::GetArgumentTypeAsCString (arg_type);
323 CommandArgumentType arg_type = option_table[i].argument_type; local
324 const char *arg_name = SBCommandInterpreter::GetArgumentTypeAsCString (arg_type);
328 if (arg_type != eArgTypeNone)
332 if (arg_type != eArgTypeNone)
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_fixup.cpp 192 GLMessage_DataType arg_type = glmsg->args(7); local
198 GLenum type = arg_type.intvalue(0);
561 GLMessage_DataType *arg_type = glmsg.add_args(); local
562 arg_type->set_isarray(false);
563 arg_type->set_type(GLMessage::DataType::ENUM);
564 arg_type->add_intvalue((int)type);
    [all...]
gltrace_api.cpp 1118 GLMessage_DataType *arg_type = glmsg.add_args(); local
1610 GLMessage_DataType *arg_type = glmsg.add_args(); local
2069 GLMessage_DataType *arg_type = glmsg.add_args(); local
2137 GLMessage_DataType *arg_type = glmsg.add_args(); local
3611 GLMessage_DataType *arg_type = glmsg.add_args(); local
4172 GLMessage_DataType *arg_type = glmsg.add_args(); local
4411 GLMessage_DataType *arg_type = glmsg.add_args(); local
5639 GLMessage_DataType *arg_type = glmsg.add_args(); local
5784 GLMessage_DataType *arg_type = glmsg.add_args(); local
5867 GLMessage_DataType *arg_type = glmsg.add_args(); local
5956 GLMessage_DataType *arg_type = glmsg.add_args(); local
7552 GLMessage_DataType *arg_type = glmsg.add_args(); local
7602 GLMessage_DataType *arg_type = glmsg.add_args(); local
8927 GLMessage_DataType *arg_type = glmsg.add_args(); local
10461 GLMessage_DataType *arg_type = glmsg.add_args(); local
10929 GLMessage_DataType *arg_type = glmsg.add_args(); local
13304 GLMessage_DataType *arg_type = glmsg.add_args(); local
13356 GLMessage_DataType *arg_type = glmsg.add_args(); local
13489 GLMessage_DataType *arg_type = glmsg.add_args(); local
13548 GLMessage_DataType *arg_type = glmsg.add_args(); local
14385 GLMessage_DataType *arg_type = glmsg.add_args(); local
14474 GLMessage_DataType *arg_type = glmsg.add_args(); local
15678 GLMessage_DataType *arg_type = glmsg.add_args(); local
16322 GLMessage_DataType *arg_type = glmsg.add_args(); local
16369 GLMessage_DataType *arg_type = glmsg.add_args(); local
17384 GLMessage_DataType *arg_type = glmsg.add_args(); local
17660 GLMessage_DataType *arg_type = glmsg.add_args(); local
18059 GLMessage_DataType *arg_type = glmsg.add_args(); local
18256 GLMessage_DataType *arg_type = glmsg.add_args(); local
21895 GLMessage_DataType *arg_type = glmsg.add_args(); local
23154 GLMessage_DataType *arg_type = glmsg.add_args(); local
24887 GLMessage_DataType *arg_type = glmsg.add_args(); local
25942 GLMessage_DataType *arg_type = glmsg.add_args(); local
26370 GLMessage_DataType *arg_type = glmsg.add_args(); local
26700 GLMessage_DataType *arg_type = glmsg.add_args(); local
30233 GLMessage_DataType *arg_type = glmsg.add_args(); local
30280 GLMessage_DataType *arg_type = glmsg.add_args(); local
30321 GLMessage_DataType *arg_type = glmsg.add_args(); local
    [all...]
  /external/e2fsprogs/misc/
e4defrag.c 1725 int arg_type = -1; local
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
ExprNodes.py 8733 arg_type = None variable in class:SizeofTypeNode
    [all...]

Completed in 747 milliseconds

1 2