/external/syslinux/gpxe/src/drivers/net/e1000/ |
e1000_hw.c | 75 static int32_t e1000_read_eeprom_eerd(struct e1000_hw *hw, uint16_t offset, uint16_t words, uint16_t *data); 76 static int32_t e1000_write_eeprom_eewr(struct e1000_hw *hw, uint16_t offset, uint16_t words, uint16_t *data); 86 static int32_t e1000_read_eeprom_ich8(struct e1000_hw *hw, uint16_t offset, uint16_t words, uint16_t *data); 87 static int32_t e1000_write_eeprom_ich8(struct e1000_hw *hw, uint16_t offset, uint16_t words, uint16_t *data); 109 uint16_t words, uint16_t *data); 111 uint16_t offset, uint16_t words, [all...] |
/build/make/core/ |
dumpvar.mk | 71 ifneq ($(words $(dumpvar_goals)),1)
|
/compatibility/cdd/5_multimedia/ |
5_11_unprocessed-audio.md | 46 multiplier to bring the level to desired range. In other words:
|
/compatibility/cdd/9_security-model/ |
9_4_alternate-execution-environments.md | 6 Format or native code. In other words:
|
/cts/tests/tests/media/libmediandkjni/ |
md5_utils.cpp | 28 byteSwap(UWORD32 *buf, unsigned words) { 43 } while (--words);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
string.py | 44 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
48 Split the argument into words using split, capitalize each
49 word using capitalize, and join the capitalized words using
53 sep is used to split and join the words.
282 # Split a string into a list of space/tab-separated words
286 Return a list of the words in the string s, using sep as the
288 maxsplit places (resulting in at most maxsplit+1 words). If sep
297 # Split a string into a list of space/tab-separated words
301 Return a list of the words in the string s, using sep as the
310 def join(words, sep = ' '): [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
util.py | 322 backslashes. In short: words are delimited by spaces, as long as those
328 words.
337 words = []
344 words.append(s[:end])
348 words.append(s[:end]) # we definitely have a word delimiter
375 words.append(s)
378 return words
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
string.py | 44 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
48 Split the argument into words using split, capitalize each
49 word using capitalize, and join the capitalized words using
53 sep is used to split and join the words.
280 # Split a string into a list of space/tab-separated words
284 Return a list of the words in the string s, using sep as the
286 maxsplit places (resulting in at most maxsplit+1 words). If sep
295 # Split a string into a list of space/tab-separated words
299 Return a list of the words in the string s, using sep as the
308 def join(words, sep = ' '): [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/ |
EfiSetMem.asm | 49 ; it first picks up any misaligned bytes, then words, before getting
|
EfiZeroMem.asm | 47 ; it first picks up any misaligned bytes, then words, before getting
|
/external/junit-params/ |
RELEASES.md | 107 Since an example is worth a thousand words:
|
/external/libunwind/doc/ |
unw_init_remote.tex | 31 stack-frame chain to be unwound. In other words, the interpretation
|
/external/libvpx/libvpx/ |
md5_utils.c | 27 static void byteSwap(UWORD32 *buf, unsigned words) { 41 } while (--words);
|
/external/python/cpython2/Lib/distutils/ |
util.py | 232 backslashes. In short: words are delimited by spaces, as long as those 238 words. 247 words = [] 254 words.append(s[:end]) 258 words.append(s[:end]) # we definitely have a word delimiter 285 words.append(s) 288 return words
|
/external/python/cpython2/Lib/ |
string.py | 44 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def". 48 Split the argument into words using split, capitalize each 49 word using capitalize, and join the capitalized words using 53 sep is used to split and join the words. 282 # Split a string into a list of space/tab-separated words 286 Return a list of the words in the string s, using sep as the 288 maxsplit places (resulting in at most maxsplit+1 words). If sep 297 # Split a string into a list of space/tab-separated words 301 Return a list of the words in the string s, using sep as the 310 def join(words, sep = ' ') [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowTextView.java | 221 String[] words = text.toString().split("\\s+"); local 223 for (String word : words) {
|
/external/valgrind/include/vki/ |
vki-s390x-linux.h | 745 vki_per_cr_words words; member in union:__anon37828::__anon37829 763 vki_per_lowcore_words words; member in union:__anon37828::__anon37830
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
util.py | 254 backslashes. In short: words are delimited by spaces, as long as those 260 words. 269 words = [] 276 words.append(s[:end]) 280 words.append(s[:end]) # we definitely have a word delimiter 307 words.append(s) 310 return words
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
string.py | 44 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def". 48 Split the argument into words using split, capitalize each 49 word using capitalize, and join the capitalized words using 53 sep is used to split and join the words. 280 # Split a string into a list of space/tab-separated words 284 Return a list of the words in the string s, using sep as the 286 maxsplit places (resulting in at most maxsplit+1 words). If sep 295 # Split a string into a list of space/tab-separated words 299 Return a list of the words in the string s, using sep as the 308 def join(words, sep = ' ') [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
util.py | 254 backslashes. In short: words are delimited by spaces, as long as those 260 words. 269 words = [] 276 words.append(s[:end]) 280 words.append(s[:end]) # we definitely have a word delimiter 307 words.append(s) 310 return words
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
string.py | 44 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def". 48 Split the argument into words using split, capitalize each 49 word using capitalize, and join the capitalized words using 53 sep is used to split and join the words. 280 # Split a string into a list of space/tab-separated words 284 Return a list of the words in the string s, using sep as the 286 maxsplit places (resulting in at most maxsplit+1 words). If sep 295 # Split a string into a list of space/tab-separated words 299 Return a list of the words in the string s, using sep as the 308 def join(words, sep = ' ') [all...] |
/prebuilts/go/darwin-x86/src/bufio/ |
example_test.go | 42 // Count the words.
|
/prebuilts/go/darwin-x86/src/go/constant/ |
value.go | 537 words := t.val.Bits() 538 bytes := make([]byte, len(words)*wordSize) 541 for _, w := range words { 559 words := make([]big.Word, (len(bytes)+(wordSize-1))/wordSize) 567 words[i] = w 574 if i < len(words) { 575 words[i] = w 579 for i > 0 && words[i-1] == 0 { 583 return makeInt(newInt().SetBits(words[:i]))
|
/prebuilts/go/darwin-x86/src/math/ |
log.go | 40 // other words,
|
/prebuilts/go/darwin-x86/src/runtime/pprof/internal/protopprof/ |
protopprof.go | 24 const minRawProfile = 5 * wordSize // Need a minimum of 5 words.
|