Home
last modified time | relevance | path

Searched refs:words (Results 1 – 25 of 66) sorted by relevance

123

/device/google/contexthub/firmware/os/cpu/cortexm4/
DatomicBitset.c26 memset(set->words, 0, sizeof(uint32_t) * ATOMIC_BITSET_NUM_WORDS(numBits)); in atomicBitsetInit()
28 set->words[numBits / 32] = ((uint32_t)((int32_t)-1LL)) << (numBits & 31); in atomicBitsetInit()
41 return !!((set->words[num / 32]) & (1UL << (num & 31))); in atomicBitsetGetBit()
47 uint32_t *wordPtr = set->words + idx; in atomicBitsetClearBit()
67 uint32_t *wordPtr = set->words + idx; in atomicBitsetSetBit()
88 uint32_t *wordPtr = set->words; in atomicBitsetFindClearAndSet()
125 … otherSet->words[idx] = atomicXchg32bits(&atomicallyAccessedSet->words[idx], otherSet->words[idx]); in atomicBitsetXchg()
138 dest[idx] = atomicRead32bits(&set->words[idx]); in atomicBitsetBulkRead()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dlogmerge.py137 words = dateline.split()
139 if len(words) >= 3 and words[0] == 'date:':
140 dateword = words[1]
141 timeword = words[2]
145 if len(words) >= 5 and words[3] == 'author:':
146 author = words[4]
152 words = revline.split()
153 if len(words) >= 2 and words[0] == 'revision':
154 rev = words[1]
Dfixcid.py291 words = line[:i].split()
292 if not words: continue
293 if len(words) == 3 and words[0] == 'struct':
294 words[:2] = [words[0] + ' ' + words[1]]
295 elif len(words) <> 2:
299 [value, key] = words
301 [key, value] = words
Dcvsfiles.py53 words = e.split('/')
54 if words[0] == '' and words[1:]:
55 name = words[1]
Difdef.py68 words = tmp.split()
69 keyword = words[0]
73 if keyword in ('ifdef', 'ifndef') and len(words) == 2:
78 word = words[1]
Dmethfix.py103 words = line[2:].split()
104 if words and re.search('[pP]ython', words[0]) < 0:
105 msg = filename + ': ' + words[0]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
Dmac.py11 words = string.split(line)
12 if not words:
14 if words[0] != 'rcvs':
15 words.insert(0, 'rcvs')
16 sys.argv = words
Dcvslib.py77 words = string.splitfields(line, '/')
78 if self.file and words[1] != self.file:
80 self.file = words[1]
81 self.erev = words[2]
92 dates = words[3]
95 self.extra = words[4]
327 words = string.split(date) # Day Mon DD HH:MM:SS YEAR
328 year = string.atoi(words[4])
329 month = unctime_monthmap[words[1]]
330 day = string.atoi(words[2])
[all …]
Dmakechangelog.py58 words = string.split(log)
59 words[:0] = ['*', prefix + file + ':']
62 for word in words:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/world/
Dworld170 words = country.split()
171 for i in range(len(words)):
172 w = words[i]
175 words[i] = w.lower()
177 words[i] = w.lower()
179 words[i] = w[0:3].upper() + w[3:].lower()
183 words[i] = '(' + w[1:].capitalize()
185 words[i] = '-'.join(
188 words[i] = w.capitalize()
190 country = ' '.join(words)
/device/linaro/bootloader/edk2/StdLib/LibC/NetUtil/
Dinet_ntop.c141 unsigned int words[NS_IN6ADDRSZ / NS_INT16SZ]; in inet_ntop6() local
153 memset(words, '\0', sizeof words); in inet_ntop6()
155 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3)); in inet_ntop6()
161 if (words[i] == 0) { in inet_ntop6()
203 (best.len == 7 && words[7] != 0x0001) || in inet_ntop6()
204 (best.len == 5 && words[5] == 0xffff))) { in inet_ntop6()
210 advance = snprintf(tp, (size_t)(ep - tp), "%x", words[i]); in inet_ntop6()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
Dmarkov.py83 words = para.split()
84 if words:
86 data = tuple(words)
88 data = ' '.join(words)
106 words = data
108 words = data.split()
111 for w in words:
Deqfix.py106 words = string.split(line[2:])
107 if words and re.search('[pP]ython', words[0]) < 0:
108 msg = filename + ': ' + words[0]
/device/google/contexthub/firmware/os/cpu/x86/
DatomicBitset.c27 memset(set->words, 0, (numBits + 31) / 8); in atomicBitsetInit()
29 set->words[numBits / 32] = ((uint32_t)((int32_t)-1LL)) << (numBits & 31); in atomicBitsetInit()
42 return !!((set->words[num / 32]) & (1UL << (num & 31))); in atomicBitsetGetBit()
48 uint32_t *wordPtr = set->words + idx; in atomicBitsetClearBit()
64 uint32_t *wordPtr = set->words; in atomicBitsetFindClearAndSet()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Drlcompleter.py142 words = dir(thisobject)
143 if "__builtins__" in words:
144 words.remove("__builtins__")
147 words.append('__class__')
148 words.extend(get_class_members(thisobject.__class__))
151 for word in words:
Dnntplib.py348 words = resp.split()
350 n = len(words)
352 count = words[1]
354 first = words[2]
356 last = words[3]
358 name = words[4].lower()
372 words = resp.split()
375 n = len(words)
377 nr = words[1]
379 id = words[2]
Dmimetypes.py217 words = line.split()
218 for i in range(len(words)):
219 if words[i][0] == '#':
220 del words[i:]
222 if not words:
224 type, suffixes = words[0], words[1:]
DBaseHTTPServer.py252 words = requestline.split()
253 if len(words) == 3:
254 [command, path, version] = words
279 elif len(words) == 2:
280 [command, path] = words
286 elif not words:
DSimpleHTTPServer.py153 words = path.split('/')
154 words = filter(None, words)
156 for word in words:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dfilelist.py79 words = line.split()
80 action = words[0]
86 if len(words) < 2:
90 patterns = map(convert_path, words[1:])
93 if len(words) < 3:
97 dir = convert_path(words[1])
98 patterns = map(convert_path, words[2:])
101 if len(words) != 2:
105 dir_pattern = convert_path(words[1])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
Dstructparse.py35 words = line.split()
36 name = words[-1]
37 type = " ".join(words[:-1])
Dstruct.py41 words = line.split()
42 name = words[-1]
43 type = " ".join(words[:-1])
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
Dparsesetup.py73 words = line.split()
74 if words:
75 modules[words[0]] = words[1:]
/device/google/contexthub/firmware/os/platform/stm32/
Dcrc.c54 const uint32_t *words = (const uint32_t *)buf; in crc32() local
69 mCrcRegs->DR = words[i]; in crc32()
73 memcpy(&word, words + numWords, leftoverBytes); in crc32()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
DBaseHTTPServer.py249 words = requestline.split()
250 if len(words) == 3:
251 command, path, version = words
276 elif len(words) == 2:
277 command, path = words
283 elif not words:

123