| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/ |
| D | unparse.py | 82 def _Import(self, t): argument 86 def _ImportFrom(self, t): argument 98 def _Assign(self, t): argument 105 def _AugAssign(self, t): argument 111 def _Return(self, t): argument 117 def _Pass(self, t): argument 120 def _Break(self, t): argument 123 def _Continue(self, t): argument 126 def _Delete(self, t): argument 130 def _Assert(self, t): argument [all …]
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| D | toaiff.py | 23 t = pipes.Template() variable 33 t = pipes.Template() variable 37 t = pipes.Template() variable 41 t = pipes.Template() variable 45 t = pipes.Template() variable 49 t = pipes.Template() variable 53 t = pipes.Template() variable
|
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/ |
| D | sorcerer.c | 27 _nextresult(STreeParser *_parser, AST **t) in _nextresult() 49 _copy_wildcard(STreeParser *_parser, AST *t, int root) in _copy_wildcard() 72 _mkroot(SORAST **r, SORAST **s, SORAST **e, SORAST *t) in _mkroot() 83 _mkchild(SORAST **r, SORAST **s, SORAST **e, SORAST *t) in _mkchild() 108 SORAST *t = (SORAST *)calloc(1, sizeof(SORAST)); in ast_alloc() local 115 ast_dup_bushy(SORAST *t) in ast_dup_bushy() 136 ast_dup(SORAST *t) in ast_dup() 155 ast_dup_node(SORAST *t) in ast_dup_node()
|
| D | astlib.c | 68 #define VALID_SCAN_TOKEN(t) (t>=LPAREN && t<=PERIOD) argument 83 scan_token_str(int t) in scan_token_str() 211 ast_match_partial(SORAST *t, SORAST *u) in ast_match_partial() 237 ast_find_all(SORAST *t, SORAST *u, SORAST **cursor) in ast_find_all() 305 ast_match(SORAST *t, SORAST *u) in ast_match() 327 ast_scanmatch(ScanAST *t, SORAST *u, SORAST **labels[], int *n) in ast_scanmatch() 443 ast_to_slist(SORAST *t) in ast_to_slist() 467 SORAST *t=NULL, *last=NULL; local 481 ast_free(SORAST *t) in ast_free() 495 ast_nsiblings(SORAST *t) in ast_nsiblings() [all …]
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
| D | ltable.c | 51 #define hashpow2(t,n) (gnode(t, lmod((n), sizenode(t)))) argument 53 #define hashstr(t,str) hashpow2(t, (str)->tsv.hash) argument 54 #define hashboolean(t,p) hashpow2(t, p) argument 61 #define hashmod(t,n) (gnode(t, ((n) % ((sizenode(t)-1)|1)))) argument 64 #define hashpointer(t,p) hashmod(t, IntPoint(p)) argument 80 static Node *hashnum (const Table *t, lua_Number n) { in hashnum() 97 static Node *mainposition (const Table *t, const TValue *key) { in mainposition() 144 static int findindex (lua_State *L, Table *t, StkId key) { in findindex() 169 int luaH_next (lua_State *L, Table *t, StkId key) { in luaH_next() 229 static int numusearray (const Table *t, int *nums) { in numusearray() [all …]
|
| /device/linaro/bootloader/edk2/ArmPlatformPkg/Include/Drivers/ |
| D | PL35xSmc.h | 59 #define PL350_SMC_SET_CYCLE_NAND_T_RC(t) (((t) & 0xF) << 0) argument 60 #define PL350_SMC_SET_CYCLE_NAND_T_WC(t) (((t) & 0xF) << 4) argument 61 #define PL350_SMC_SET_CYCLE_NAND_T_REA(t) (((t) & 0x7) << 8) argument 62 #define PL350_SMC_SET_CYCLE_NAND_T_WP(t) (((t) & 0x7) << 11) argument 63 #define PL350_SMC_SET_CYCLE_NAND_T_CLR(t) (((t) & 0x7) << 14) argument 64 #define PL350_SMC_SET_CYCLE_NAND_T_AR(t) (((t) & 0x7) << 17) argument 65 #define PL350_SMC_SET_CYCLE_NAND_T_RR(t) (((t) & 0x7) << 20) argument 67 #define PL350_SMC_SET_CYCLE_SRAM_T_RC(t) (((t) & 0xF) << 0) argument 68 #define PL350_SMC_SET_CYCLE_SRAM_T_WC(t) (((t) & 0xF) << 4) argument 69 #define PL350_SMC_SET_CYCLE_SRAM_T_CEOE(t) (((t) & 0x7) << 8) argument [all …]
|
| /device/google/cuttlefish_common/host/commands/virtual_usb_manager/usbip/ |
| D | client.cpp | 33 uint32_t NetToHost(uint32_t t) { return ntohl(t); } in NetToHost() 35 Command NetToHost(Command t) { return static_cast<Command>(ntohl(t)); } in NetToHost() 37 Direction NetToHost(Direction t) { return static_cast<Direction>(ntohl(t)); } in NetToHost() 39 uint32_t NetToHost(uint16_t t) { return ntohs(t); } in NetToHost() 41 CmdHeader NetToHost(const CmdHeader& t) { in NetToHost() 52 CmdReqSubmit NetToHost(const CmdReqSubmit& t) { in NetToHost() 62 CmdReqUnlink NetToHost(const CmdReqUnlink& t) { in NetToHost() 68 uint32_t HostToNet(uint32_t t) { return htonl(t); } in HostToNet() 70 Command HostToNet(const Command t) { return static_cast<Command>(htonl(t)); } in HostToNet() 72 Direction HostToNet(Direction t) { return static_cast<Direction>(htonl(t)); } in HostToNet() [all …]
|
| /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/ |
| D | ASTBase.h | 67 void setRight(ASTBase *t) { _right = (ASTBase *)t; } in setRight() 68 void setDown(ASTBase *t) { _down = (ASTBase *)t; } in setDown() 110 void setLeft(ASTBase *t) { _left = (ASTDoublyLinkedBase *)t; } // MR6 in setLeft() 111 void setUp(ASTBase *t) { _up = (ASTDoublyLinkedBase *)t; } // MR6 in setUp() 115 void setLeft(PCCTS_AST *t) { _left = (ASTDoublyLinkedBase *)t; } // MR6 in setLeft() 116 void setUp(PCCTS_AST *t) { _up = (ASTDoublyLinkedBase *)t; } // MR6 in setUp()
|
| D | PCCTSAST.cpp | 58 addChild(PCCTS_AST *t) in addChild() 212 PCCTS_AST *t = this; in match() local 228 match_partial(PCCTS_AST *t, PCCTS_AST *u) in match_partial() 252 scanmatch(ScanAST *t, PCCTS_AST **labels[], int *n) in scanmatch() 361 PCCTS_AST *t = this; in tfree() local 370 PCCTS_AST *t = this; in nsiblings() local 384 PCCTS_AST *t = this; in sibling_index() local 429 scanast_free(ScanAST *t) in scanast_free() 518 ScanAST *t; in stringparser_parse_scanast() local 544 ScanAST *t=NULL, *root, *child, *last=NULL /*MR23*/; in stringparser_parse_tree() local [all …]
|
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/ |
| D | ASTBase.h | 67 void setRight(ASTBase *t) { _right = (ASTBase *)t; } in setRight() 68 void setDown(ASTBase *t) { _down = (ASTBase *)t; } in setDown() 107 void setLeft(ASTBase *t) { _left = (ASTDoublyLinkedBase *)t; } // MR6 in setLeft() 108 void setUp(ASTBase *t) { _up = (ASTDoublyLinkedBase *)t; } // MR6 in setUp() 112 void setLeft(PCCTS_AST *t) { _left = (ASTDoublyLinkedBase *)t; } // MR6 in setLeft() 113 void setUp(PCCTS_AST *t) { _up = (ASTDoublyLinkedBase *)t; } // MR6 in setUp()
|
| D | AToken_traditional.h | 104 ANTLRRefCountToken(ANTLRTokenType t, ANTLRChar *s) in ANTLRRefCountToken() 160 ANTLRCommonNoRefCountToken(ANTLRTokenType t, ANTLRChar *s) in ANTLRCommonNoRefCountToken() 166 void setType(ANTLRTokenType t) { _type = t; } in setType() 176 ANTLRAbstractToken *t = new ANTLRCommonNoRefCountToken; in makeToken() local 189 ANTLRCommonToken(ANTLRTokenType t, ANTLRChar *s) : ANTLRRefCountToken(t,s) in ANTLRCommonToken() 196 void setType(ANTLRTokenType t) { _type = t; } in setType() 206 ANTLRAbstractToken *t = new ANTLRCommonToken(tt,txt); in makeToken() local
|
| D | PCCTSAST.cpp | 58 addChild(PCCTS_AST *t) in addChild() 211 PCCTS_AST *t = this; in match() local 227 match_partial(PCCTS_AST *t, PCCTS_AST *u) in match_partial() 247 scanmatch(ScanAST *t, PCCTS_AST **labels[], int *n) in scanmatch() 347 PCCTS_AST *t = this; in tfree() local 356 PCCTS_AST *t = this; in nsiblings() local 370 PCCTS_AST *t = this; in sibling_index() local 415 scanast_free(ScanAST *t) in scanast_free() 506 ScanAST *t; in stringparser_parse_scanast() local 532 ScanAST *t=NULL, *root, *child, *last; in stringparser_parse_tree() local [all …]
|
| D | AToken.h | 106 ANTLRRefCountToken(ANTLRTokenType t, const ANTLRChar *s) in ANTLRRefCountToken() 163 ANTLRCommonNoRefCountToken(ANTLRTokenType t, const ANTLRChar *s) in ANTLRCommonNoRefCountToken() 171 void setType(ANTLRTokenType t) { _type = t; } in setType() 198 ANTLRAbstractToken *t = new ANTLRCommonNoRefCountToken; in makeToken() local 236 ANTLRCommonToken(ANTLRTokenType t, const ANTLRChar *s) : ANTLRRefCountToken(t,s) in ANTLRCommonToken() 244 void setType(ANTLRTokenType t) { _type = t; } in setType() 271 ANTLRAbstractToken *t = new ANTLRCommonToken(tt,txt); in makeToken() local
|
| /device/google/cuttlefish_common/guest/hals/ril/ |
| D | cuttlefish_ril.cpp | 233 static int request_or_send_data_calllist(RIL_Token* t) { in request_or_send_data_calllist() 314 static void request_datacall_fail_cause(RIL_Token t) { in request_datacall_fail_cause() 326 RIL_Token t) { in request_data_calllist() 330 static void request_setup_data_call(void* data, size_t datalen, RIL_Token t) { in request_setup_data_call() 414 RIL_Token t) { in request_teardown_data_call() 430 static void set_radio_state(RIL_RadioState new_state, RIL_Token t) { in set_radio_state() 458 static void request_radio_power(void* data, size_t /*datalen*/, RIL_Token t) { in request_radio_power() 538 RIL_Token t) { in request_get_current_calls() 594 static void request_dial(void* data, size_t /*datalen*/, RIL_Token t) { in request_dial() 628 void request_set_mute(void* data, size_t /*datalen*/, RIL_Token t) { in request_set_mute() [all …]
|
| /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
| D | fset2.c | 94 int MR_tree_matches_constraints(int k,set * constrain,Tree *t) in MR_tree_matches_constraints() 147 prune( Tree *t, int k ) in prune() 303 Tree *t=NULL; local 317 _Tfree( Tree *t ) in _Tfree() 342 tdup( Tree *t ) in tdup() 361 tdup_chain( Tree *t ) in tdup_chain() 378 tappend( Tree *t, Tree *u ) in tappend() 401 Tfree( Tree *t ) in Tfree() 431 tlink( Tree *t, Tree *u, int remaining_k ) in tlink() 465 tshrink( Tree *t ) in tshrink() [all …]
|
| D | main.c | 126 pFileList( char *s, char *t ) in pFileList() 173 pLLK( char *s, char *t ) in pLLK() 189 pCk( char *s, char *t ) in pCk() 205 pTab( char *s, char *t ) /* MR6 */ in pTab() 223 pAAd( char *s, char *t ) /* MR11 */ in pAAd() 236 pTreport( char *s, char *t ) /* MR11 */ in pTreport() 258 static void pInfo(char *s, char *t) /* MR10 */ in pInfo() 302 static void pFr(char *s, char *t) {RemapFileName = t;} in pFr() 303 static void pFe(char *s, char *t) {ErrFileName = t;} in pFe() 304 static void pFl(char *s, char *t) {DlgFileName = t;} in pFl() [all …]
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
| D | _math.c | 67 double t = x*x; in _Py_acosh() local 71 double t = x - 1.0; in _Py_acosh() local 107 double t = x*x; in _Py_asinh() local 135 double t; in _Py_atanh() local
|
| /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/h/ |
| D | SCommonAST.h | 20 void setRight(PCCTS_AST *t) { _right = (SORCommonAST *)t; } in setRight() 21 void setDown(PCCTS_AST *t) { _down = (SORCommonAST *)t; } in setDown() 22 void setType(int t) { _type = t; } in setType()
|
| /device/google/cuttlefish_common/common/libs/thread_safe_queue/ |
| D | thread_safe_queue.h | 48 auto t = std::move(items_.front()); in Pop() local 53 void Push(T&& t) { in Push() 60 void Push(const T& t) { in Push()
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
| D | _math.c | 67 double t = x*x; in _Py_acosh() local 71 double t = x - 1.0; in _Py_acosh() local 107 double t = x*x; in _Py_asinh() local 135 double t; in _Py_atanh() local
|
| /device/linaro/hikey/hifi/xaf/hifi-dpf/core/util/ |
| D | rbtree.c | 64 #define RB_SET_P(t, n, p) \ argument 67 #define RB_SET_L(t, n, l) \ argument 70 #define RB_SET_R(t, n, r) \ argument 73 #define RB_SET_C(t, n, c) \ argument 76 #define RB_SET_C_RB_BLK(t, n) \ argument 79 #define RB_SET_C_RB_RED(t, n) \ argument 82 #define RB_SET_P_C(t, n, p, c) \ argument 85 #define RB_SET_P_L(t, n, p, l) \ argument 88 #define RB_SET_P_L_C(t, n, p, l, c) \ argument 91 #define RB_SET_P_R(t, n, p, r) \ argument [all …]
|
| /device/google/crosshatch/json-c/ |
| D | linkhash.c | 432 struct lh_table *t; in lh_table_new() local 460 void lh_table_resize(struct lh_table *t, int new_size) in lh_table_resize() 480 void lh_table_free(struct lh_table *t) in lh_table_free() 493 int lh_table_insert(struct lh_table *t, void *k, const void *v) in lh_table_insert() 527 struct lh_entry* lh_table_lookup_entry(struct lh_table *t, const void *k) in lh_table_lookup_entry() 545 const void* lh_table_lookup(struct lh_table *t, const void *k) in lh_table_lookup() 552 json_bool lh_table_lookup_ex(struct lh_table* t, const void* k, void **v) in lh_table_lookup_ex() 563 int lh_table_delete_entry(struct lh_table *t, struct lh_entry *e) in lh_table_delete_entry() 592 int lh_table_delete(struct lh_table *t, const void *k) in lh_table_delete() 599 int lh_table_length(struct lh_table *t) in lh_table_length()
|
| /device/google/bonito/json-c/ |
| D | linkhash.c | 432 struct lh_table *t; in lh_table_new() local 460 void lh_table_resize(struct lh_table *t, int new_size) in lh_table_resize() 480 void lh_table_free(struct lh_table *t) in lh_table_free() 493 int lh_table_insert(struct lh_table *t, void *k, const void *v) in lh_table_insert() 527 struct lh_entry* lh_table_lookup_entry(struct lh_table *t, const void *k) in lh_table_lookup_entry() 545 const void* lh_table_lookup(struct lh_table *t, const void *k) in lh_table_lookup() 552 json_bool lh_table_lookup_ex(struct lh_table* t, const void* k, void **v) in lh_table_lookup_ex() 563 int lh_table_delete_entry(struct lh_table *t, struct lh_entry *e) in lh_table_delete_entry() 592 int lh_table_delete(struct lh_table *t, const void *k) in lh_table_delete() 599 int lh_table_length(struct lh_table *t) in lh_table_length()
|
| /device/generic/goldfish/ril/ |
| D | reference-ril.c | 223 #define RIL_onRequestComplete(t, e, response, responselen) s_rilenv->OnRequestComplete(t,e, respons… argument 479 static void requestRadioPower(void *data, size_t datalen __unused, RIL_Token t) in requestRadioPower() 516 static void requestShutdown(RIL_Token t) in requestShutdown() 540 static void requestDataCallList(void *data __unused, size_t datalen __unused, RIL_Token t) in requestDataCallList() 547 void *data __unused, size_t datalen __unused, RIL_Token t, int request) in requestCallSelection() 611 static void requestOrSendDataCallList(RIL_Token *t) in requestOrSendDataCallList() 846 static void setNetworkSelectionAutomatic(RIL_Token t) in setNetworkSelectionAutomatic() 868 void *data __unused, size_t datalen __unused, RIL_Token t) in requestQueryNetworkSelectionMode() 911 static void requestGetCurrentCalls(void *data __unused, size_t datalen __unused, RIL_Token t) 1036 static void requestDial(void *data, size_t datalen __unused, RIL_Token t) [all …]
|
| /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/genmk/ |
| D | genmk_old.c | 86 pProj( s, t ) in pProj() argument 108 pUT( s, t ) in pUT() argument 149 pClass( char *s, char *t ) in pClass() 162 pDLGClass( char *s, char *t ) in pDLGClass() 177 pOdir( char *s, char *t ) in pOdir() 189 pHdr( char *s, char *t ) in pHdr() 201 pCFiles( char *s, char *t ) in pCFiles() 213 pCompiler( char *s, char *t ) in pCompiler() 226 ppccts_path( char *s, char *t ) in ppccts_path()
|