HomeSort by relevance Sort by last modified time
    Searched refs:where (Results 1 - 25 of 1924) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/arch/x86/include/gpxe/
pcidirect.h 26 extern void pcidirect_prepare ( struct pci_device *pci, int where );
43 * @v where Location within PCI configuration space
49 unsigned int where,
51 pcidirect_prepare ( pci, where );
52 *value = inb ( PCIDIRECT_CONFIG_DATA + ( where & 3 ) );
60 * @v where Location within PCI configuration space
66 unsigned int where,
68 pcidirect_prepare ( pci, where );
69 *value = inw ( PCIDIRECT_CONFIG_DATA + ( where & 2 ) );
77 * @v where Location within PCI configuration spac
    [all...]
pcibios.h 39 * @v where Location within PCI configuration space
45 unsigned int where,
50 rc = pcibios_read ( pci, PCIBIOS_READ_CONFIG_BYTE | where, &tmp );
59 * @v where Location within PCI configuration space
65 unsigned int where,
70 rc = pcibios_read ( pci, PCIBIOS_READ_CONFIG_WORD | where, &tmp );
79 * @v where Location within PCI configuration space
85 unsigned int where,
87 return pcibios_read ( pci, PCIBIOS_READ_CONFIG_DWORD | where, value );
94 * @v where Location within PCI configuration spac
    [all...]
  /external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
values.pass.cpp 44 void where(const _Tp &) {} function
71 where(E::word_size);
72 where(E::state_size);
73 where(E::shift_size);
74 where(E::mask_bits);
75 where(E::xor_mask);
76 where(E::tempering_u);
77 where(E::tempering_d);
78 where(E::tempering_s);
79 where(E::tempering_b)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.mers/
values.pass.cpp 44 void where(const _Tp &) {} function
66 where(E::word_size);
67 where(E::state_size);
68 where(E::shift_size);
69 where(E::mask_bits);
70 where(E::xor_mask);
71 where(E::tempering_u);
72 where(E::tempering_d);
73 where(E::tempering_s);
74 where(E::tempering_b)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.eng/rand.eng.mers/
values.pass.cpp 44 void where(const _Tp &) {} function
66 where(E::word_size);
67 where(E::state_size);
68 where(E::shift_size);
69 where(E::mask_bits);
70 where(E::xor_mask);
71 where(E::tempering_u);
72 where(E::tempering_d);
73 where(E::tempering_s);
74 where(E::tempering_b)
    [all...]
  /external/pcre/dist2/src/
pcre2_config.c 64 /* If where is NULL, the length of memory required is returned.
68 where where to put the information
72 PCRE2_ERROR_BADOPTION if "where" not recognized
77 pcre2_config(uint32_t what, void *where)
79 if (where == NULL) /* Requests a length */
113 *((uint32_t *)where) = PCRE2_BSR_ANYCRLF;
115 *((uint32_t *)where) = PCRE2_BSR_UNICODE;
121 *((uint32_t *)where) = 1;
123 *((uint32_t *)where) = 0
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.sub/
values.pass.cpp 32 void where(const _Tp &) {} function
44 where(E::word_size);
45 where(E::short_lag);
46 where(E::long_lag);
47 where(E::default_seed);
60 where(E::word_size);
61 where(E::short_lag);
62 where(E::long_lag);
63 where(E::default_seed);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.eng/rand.eng.sub/
values.pass.cpp 32 void where(const _Tp &) {} function
44 where(E::word_size);
45 where(E::short_lag);
46 where(E::long_lag);
47 where(E::default_seed);
60 where(E::word_size);
61 where(E::short_lag);
62 where(E::long_lag);
63 where(E::default_seed);
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES3/
PVRTgles3Ext.cpp 77 GLubyte *where, *terminator; local
80 where = (GLubyte *) strchr(extension, ' ');
81 if (where || *extension == '\0')
90 where = (GLubyte *) strstr((const char *) start, extension);
91 if (!where)
93 terminator = where + strlen(extension);
94 if (where == start || *(where - 1) == ' ')
  /frameworks/base/core/java/android/text/style/
TabStopSpan.java 41 * @param where the offset of the tab stop from the leading margin of
44 public Standard(int where) {
45 mTab = where;
  /toolchain/binutils/binutils-2.25/gas/
output-file.h 21 void output_file_append (char *where, long length, char *filename);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
march-err-2.s 1 ; Test unsupported ARCH in -march=ARCH, where there's an option
  /external/curl/src/
tool_cb_see.h 28 int tool_ftruncate64(int fd, curl_off_t where);
31 #define ftruncate(fd,where) tool_ftruncate64(fd,where)
  /external/valgrind/memcheck/tests/
mempool.c 16 char *where; member in struct:_level_list
24 char *where; member in struct:_pool
39 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
44 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
49 (void) VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
65 l->where = p->where;
66 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0);
74 VALGRIND_DESTROY_MEMPOOL(l->where);
75 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where, p->where-l->where)
101 char *where; local
    [all...]
  /external/libcxx/include/support/win32/
support.h 110 unsigned long where; local
115 if (_BitScanForward64(&where, mask))
116 return static_cast<int>(where);
120 if (_BitScanForward(&where, static_cast<unsigned long>(mask)))
121 return static_cast<int>(where);
123 if (_BitScanForward(&where, static_cast<unsigned long>(mask >> 32)))
124 return static_cast<int>(where + 32); // Create a bit offset from the LSB.
131 unsigned long where; local
134 if (_BitScanForward(&where, mask))
135 return static_cast<int>(where);
151 unsigned long where; local
171 unsigned long where; local
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.disc/
values.pass.cpp 30 void where(const _Tp &) {} function
40 where(E::block_size);
41 where(E::used_block);
52 where(E::block_size);
53 where(E::used_block);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
values.pass.cpp 30 void where(const _Tp &) {} function
40 where(E::block_size);
41 where(E::used_block);
52 where(E::block_size);
53 where(E::used_block);
  /external/libcxx/test/std/re/re.regex/re.regex.const/
constants.pass.cpp 33 void where(const _Tp &) {} function
50 where(BR::icase);
51 where(BR::nosubs);
52 where(BR::optimize);
53 where(BR::collate);
54 where(BR::ECMAScript);
55 where(BR::basic);
56 where(BR::extended);
57 where(BR::awk);
58 where(BR::grep)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.const/
constants.pass.cpp 32 void where(const _Tp &) {} function
49 where(BR::icase);
50 where(BR::nosubs);
51 where(BR::optimize);
52 where(BR::collate);
53 where(BR::ECMAScript);
54 where(BR::basic);
55 where(BR::extended);
56 where(BR::awk);
57 where(BR::grep)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.regex/re.regex.const/
constants.pass.cpp 33 void where(const _Tp &) {} function
50 where(BR::icase);
51 where(BR::nosubs);
52 where(BR::optimize);
53 where(BR::collate);
54 where(BR::ECMAScript);
55 where(BR::basic);
56 where(BR::extended);
57 where(BR::awk);
58 where(BR::grep)
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
pci_io.h 62 * @v where Location within PCI configuration space
66 int pci_read_config_byte ( struct pci_device *pci, unsigned int where,
73 * @v where Location within PCI configuration space
77 int pci_read_config_word ( struct pci_device *pci, unsigned int where,
84 * @v where Location within PCI configuration space
88 int pci_read_config_dword ( struct pci_device *pci, unsigned int where,
95 * @v where Location within PCI configuration space
99 int pci_write_config_byte ( struct pci_device *pci, unsigned int where,
106 * @v where Location within PCI configuration space
110 int pci_write_config_word ( struct pci_device *pci, unsigned int where,
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/efi/
efi_pci.h 50 * @v where Location within PCI configuration space
56 unsigned int where,
59 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_BYTE ),
67 * @v where Location within PCI configuration space
73 unsigned int where,
76 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_WORD ),
84 * @v where Location within PCI configuration space
90 unsigned int where,
93 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_DWORD ),
101 * @v where Location within PCI configuration spac
    [all...]
  /hardware/intel/img/psb_video/src/
tng_enc_trace.h 59 #define CONFIG_CMD(bus,device_fn,where) \
60 (0x80000000|((bus&0xff) << 16)|((device_fn&0xff) << 8)|((where&0xff) & ~3))
62 static inline unsigned long pci_get_long(int bus,int device_fn, int where)
64 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
68 static inline int pci_set_long(int bus,int device_fn, int where,unsigned long value)
70 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
75 static inline int pci_get_short(int bus,int device_fn, int where)
77 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
78 return inw(0xCFC + (where&2));
82 static inline int pci_set_short(int bus,int device_fn, int where,unsigned short value
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
ITokenSource`1.cs 37 where T : IToken
  /external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.sub/
values.pass.cpp 32 void where(const _Tp &) {} function
49 where(E::word_size);
50 where(E::short_lag);
51 where(E::long_lag);
52 where(E::default_seed);
70 where(E::word_size);
71 where(E::short_lag);
72 where(E::long_lag);
73 where(E::default_seed);

Completed in 986 milliseconds

1 2 3 4 5 6 7 8 91011>>