/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | stringold.py | 46 def lower(s): argument 55 def upper(s): argument 64 def swapcase(s): argument 74 def strip(s): argument 84 def lstrip(s): argument 93 def rstrip(s): argument 104 def split(s, sep=None, maxsplit=0): argument 136 def index(s, *args): argument 145 def rindex(s, *args): argument 154 def count(s, *args): argument [all …]
|
D | base64.py | 32 def _translate(s, altchars): argument 42 def b64encode(s, altchars=None): argument 59 def b64decode(s, altchars=None): argument 79 def standard_b64encode(s): argument 86 def standard_b64decode(s): argument 95 def urlsafe_b64encode(s): argument 103 def urlsafe_b64decode(s): argument 135 def b32encode(s): argument 177 def b32decode(s, casefold=False, map01=None): argument 251 def b16encode(s): argument [all …]
|
D | string.py | 45 def capwords(s, sep=None): argument 220 def lower(s): argument 229 def upper(s): argument 238 def swapcase(s): argument 248 def strip(s, chars=None): argument 260 def lstrip(s, chars=None): argument 270 def rstrip(s, chars=None): argument 281 def split(s, sep=None, maxsplit=-1): argument 296 def rsplit(s, sep=None, maxsplit=-1): argument 322 def index(s, *args): argument [all …]
|
/device/google/contexthub/firmware/os/core/ |
D | sensors.c | 93 struct Sensor *s; in sensorRegisterEx() local 146 struct Sensor *s = sensorFindByHandle(handle); in sensorRegisterInitComplete() local 159 struct Sensor *s = sensorFindByHandle(handle); in sensorUnregister() local 189 static bool sensorCallFuncPower(struct Sensor* s, bool on) in sensorCallFuncPower() 212 static bool sensorCallAsOwner(struct Sensor* s, bool (*callback)(void*)) in sensorCallAsOwner() 217 static bool sensorCallFuncFwUpld(struct Sensor* s) in sensorCallFuncFwUpld() 230 static bool sensorCallFuncSetRate(struct Sensor* s, uint32_t rate, uint64_t latency) in sensorCallFuncSetRate() 252 static bool sensorCallFuncCalibrate(struct Sensor* s) in sensorCallFuncCalibrate() 260 static bool sensorCallFuncSelfTest(struct Sensor* s) in sensorCallFuncSelfTest() 268 static bool sensorCallFuncFlush(struct Sensor* s) in sensorCallFuncFlush() [all …]
|
/device/linaro/bootloader/edk2/StdLib/LibC/Locale/ |
D | multibyte_sb.c | 63 const char *s, in mbrlen() 80 const char *s, in mblen() 94 const char *s, in mbrtowc() 116 const char *s, in mbtowc() 130 char *s, in wcrtomb() 148 char *s, in wctomb() 167 const char **s, in mbsrtowcs() 205 const char *s, in mbstowcs() 219 char *s, in wcsrtombs() 255 char *s, in wcstombs()
|
/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
D | sigtypes.h | 70 #define __sigaddset(s, n) ((s)->__bits[__sigword(n)] |= __sigmask(n)) argument 71 #define __sigdelset(s, n) ((s)->__bits[__sigword(n)] &= ~__sigmask(n)) argument 72 #define __sigismember(s, n) (((s)->__bits[__sigword(n)] & __sigmask(n)) != 0) argument 73 #define __sigemptyset(s) ((s)->__bits[0] = 0x00000000, \ argument 81 #define __sigfillset(s) ((s)->__bits[0] = 0xffffffff, \ argument 85 #define __sigplusset(s, t) \ argument 92 #define __sigminusset(s, t) \ argument 99 #define __sigandset(s, t) \ argument
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | trees.c | 167 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len) argument 171 # define send_code(s, c, tree) \ argument 180 #define put_short(s, w) { \ argument 192 local void send_bits(s, value, length) in send_bits() argument 217 #define send_bits(s, value, length) \ argument 382 void _tr_init(s) in _tr_init() argument 411 local void init_block(s) in init_block() argument 434 #define pqremove(s, tree, top) \ argument 455 local void pqdownheap(s, tree, k) in pqdownheap() argument 490 local void gen_bitlen(s, desc) in gen_bitlen() argument [all …]
|
D | deflate.c | 170 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask) argument 184 #define INSERT_STRING(s, str, match_head) \ argument 189 #define INSERT_STRING(s, str, match_head) \ argument 199 #define CLEAR_HASH(s) \ argument 227 deflate_state *s; local 320 deflate_state *s; local 360 deflate_state *s; local 421 deflate_state *s; local 461 deflate_state *s; local 493 deflate_state *s; local [all …]
|
D | gzio.c | 102 gz_stream *s; local 239 gz_stream *s = (gz_stream*)file; local 261 local int get_byte(s) in get_byte() argument 288 local void check_header(s) in check_header() argument 355 local int destroy (s) in destroy() argument 399 gz_stream *s = (gz_stream*)file; local 519 gz_stream *s = (gz_stream*)file; local 564 gz_stream *s = (gz_stream*)file; local 693 int ZEXPORT gzputs(file, s) in gzputs() argument 711 gz_stream *s = (gz_stream*)file; local [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | string.py | 45 def capwords(s, sep=None): argument 222 def lower(s): argument 231 def upper(s): argument 240 def swapcase(s): argument 250 def strip(s, chars=None): argument 262 def lstrip(s, chars=None): argument 272 def rstrip(s, chars=None): argument 283 def split(s, sep=None, maxsplit=-1): argument 298 def rsplit(s, sep=None, maxsplit=-1): argument 324 def index(s, *args): argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | deflate.c | 167 #define UPDATE_HASH(s,h,c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask) argument 181 #define INSERT_STRING(s, str, match_head) \ argument 186 #define INSERT_STRING(s, str, match_head) \ argument 196 #define CLEAR_HASH(s) \ argument 224 deflate_state *s; local 328 deflate_state *s; local 395 deflate_state *s; local 469 deflate_state *s; local 495 deflate_state *s; local 538 deflate_state *s; local [all …]
|
D | trees.c | 163 # define send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len) argument 167 # define send_code(s, c, tree) \ argument 176 #define put_short(s, w) { \ argument 188 local void send_bits(s, value, length) in send_bits() argument 213 #define send_bits(s, value, length) \ argument 381 void ZLIB_INTERNAL _tr_init(s) in _tr_init() argument 409 local void init_block(s) in init_block() argument 432 #define pqremove(s, tree, top) \ argument 453 local void pqdownheap(s, tree, k) in pqdownheap() argument 488 local void gen_bitlen(s, desc) in gen_bitlen() argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lstring.h | 15 #define sizestring(s) (sizeof(union TString)+((s)->len+1)*sizeof(char)) argument 19 #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ argument 22 #define luaS_fix(s) l_setbit((s)->tsv.marked, FIXEDBIT) argument 28 #define isreserved(s) ((s)->tsv.tt == LUA_TSHRSTR && (s)->tsv.extra > 0) argument
|
D | lstrlib.c | 55 const char *s = luaL_checklstring(L, 1, &l); in str_sub() local 70 const char *s = luaL_checklstring(L, 1, &l); in str_reverse() local 83 const char *s = luaL_checklstring(L, 1, &l); in str_lower() local 96 const char *s = luaL_checklstring(L, 1, &l); in str_upper() local 110 const char *s = luaL_checklstring(L, 1, &l); in str_rep() local 135 const char *s = luaL_checklstring(L, 1, &l); in str_byte() local 309 static int singlematch (MatchState *ms, const char *s, const char *p, in singlematch() 325 static const char *matchbalance (MatchState *ms, const char *s, in matchbalance() 346 static const char *max_expand (MatchState *ms, const char *s, in max_expand() 361 static const char *min_expand (MatchState *ms, const char *s, in min_expand() [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/genmk/ |
D | genmk.c | 103 pProj(char *s, char *t ) in pProj() 115 pUL( char *s ) in pUL() 126 pCPP( char *s ) in pCPP() 137 pUT( char *s, char *t ) in pUT() 149 pTrees( char *s ) in pTrees() 160 pHoist( char *s ) in pHoist() 171 pSor( char *s ) in pSor() 184 pSFiles( char *s, char *t ) in pSFiles() 204 pCFiles( char *s, char *t ) in pCFiles() 217 isKnownSuffix( char *s ) in isKnownSuffix() [all …]
|
D | genmk_old.c | 86 pProj( s, t ) in pProj() argument 94 pUL( s ) in pUL() argument 101 pCPP( s ) in pCPP() argument 108 pUT( s, t ) in pUT() argument 116 pTrees( s ) in pTrees() argument 123 pHoist( s ) in pHoist() argument 131 pFile( char *s ) in pFile() 149 pClass( char *s, char *t ) in pClass() 162 pDLGClass( char *s, char *t ) in pDLGClass() 177 pOdir( char *s, char *t ) in pOdir() [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | main.c | 101 pFile( char *s ) in pFile() 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() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/ |
D | parser.c | 30 s_reset(stack *s) in s_reset() 35 #define s_empty(s) ((s)->s_top == &(s)->s_base[MAXSTACK]) argument 38 s_push(register stack *s, dfa *d, node *parent) in s_push() 55 s_pop(register stack *s) in s_pop() 64 #define s_pop(s) (s)->s_top++ argument 108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset) in shift() 120 push(register stack *s, int type, dfa *d, int newstate, int lineno, int col_offset) in push() 143 register char *s = str; in classify() local 237 register state *s = &d->d_state[ps->p_stack.s_top->s_state]; in PyParser_AddToken() local
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | parser.c | 30 s_reset(stack *s) in s_reset() 35 #define s_empty(s) ((s)->s_top == &(s)->s_base[MAXSTACK]) argument 38 s_push(register stack *s, dfa *d, node *parent) in s_push() 55 s_pop(register stack *s) in s_pop() 64 #define s_pop(s) (s)->s_top++ argument 108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset) in shift() 120 push(register stack *s, int type, dfa *d, int newstate, int lineno, int col_offset) in push() 143 register char *s = str; in classify() local 237 register state *s = &d->d_state[ps->p_stack.s_top->s_state]; in PyParser_AddToken() local
|
/device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/ |
D | mem.c | 27 const unsigned char *s = s1; in memcmp() local 47 const char *s = src; in memcpy() local 75 const char *s = (const char *)src + len; in memmove() local 88 const char *s = src; in memchr() local
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/ |
D | main.c | 67 void p_file(char *s) { file_str[numfiles++] = s;} in p_file() 68 void p_cl_name(char *s, char *t) in p_cl_name() 77 void p_mode_file(char *s, char *t){mode_file=t;} in p_mode_file() 78 void p_outdir(char *s,char *t) {OutputDirectory=t;} in p_outdir() 90 void p_file(s) char *s; { file_str[numfiles++] = s;} in p_file() argument 91 void p_cl_name(s,t) in p_cl_name() argument 101 void p_mode_file(s,t) char *s,*t;{mode_file=t;} in p_mode_file() argument 102 void p_outdir(s,t) char *s,*t;{OutputDirectory=t;} in p_outdir() argument
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/ |
D | regerror.c | 192 static void sprint_byte(char* s, unsigned int v) in sprint_byte() 197 static void sprint_byte_with_x(char* s, unsigned int v) in sprint_byte_with_x() 202 static int to_ascii(OnigEncoding enc, UChar *s, UChar *end, in to_ascii() 257 onig_error_code_to_str(UChar* s, int code, ...) in onig_error_code_to_str() 344 UChar *p, *s, *bp; local
|
D | regversion.c | 37 static char s[12]; in onig_version() local 51 static char s[58]; in onig_copyright() local
|
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/ |
D | accept.c | 36 int s, in AcceptWork() 123 int s, in accept() 152 int s, in AcceptNB()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/ |
D | utils.py | 58 def _identity(s): argument 62 def _bdecode(s): argument 75 def fix_eols(s): argument 234 def decode_rfc2231(s): argument 242 def encode_rfc2231(s, charset=None, language=None): argument
|