Searched refs:where (Results 1 - 25 of 458) sorted by relevance

1234567891011>>

/external/pcre/dist/
H A Dpcre_config.c63 where where to put the information
70 pcre_config(int what, void *where) argument
73 pcre16_config(int what, void *where)
76 pcre32_config(int what, void *where)
83 *((int *)where) = 0;
87 *((int *)where) = 1;
89 *((int *)where) = 0;
96 *((int *)where) = 0;
100 *((int *)where)
[all...]
H A Dpcre_fullinfo.c63 where where to put the information
71 int what, void *where)
75 int what, void *where)
79 int what, void *where)
85 if (re == NULL || where == NULL) return PCRE_ERROR_NULL;
106 *((unsigned long int *)where) = re->options & PUBLIC_COMPILE_OPTIONS;
110 *((size_t *)where) = re->size;
114 *((size_t *)where) = (study == NULL)? 0 : study->size;
119 *((size_t *)where)
70 pcre_fullinfo(const pcre *argument_re, const pcre_extra *extra_data, int what, void *where) argument
[all...]
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
H A Dvalues.pass.cpp44 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(
[all...]
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.sub/
H A Dvalues.pass.cpp32 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/curl/src/
H A Dtool_cb_see.h28 int tool_ftruncate64(int fd, curl_off_t where);
31 #define ftruncate(fd,where) tool_ftruncate64(fd,where)
/external/valgrind/memcheck/tests/
H A Dmempool.c16 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,
101 char *where; local
[all...]
H A Dmempool2.c19 char *where; member in struct:_level_list
27 char *where; member in struct:_pool
42 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
47 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
52 (void) VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
68 l->where = p->where;
69 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0);
77 VALGRIND_DESTROY_MEMPOOL(l->where);
78 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where,
104 char *where; local
[all...]
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
H A Dvalues.pass.cpp30 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/
H A Dconstants.pass.cpp32 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(B
[all...]
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
H A DBreakIterator.java35 * <li>getLineInstance() returns a BreakIterator that locates positions where it is
451 * @param where A locale specifying the language of the text to be
456 public static BreakIterator getWordInstance(Locale where) argument
458 return getBreakInstance(where, KIND_WORD);
463 * @param where A locale specifying the language of the text to be
468 public static BreakIterator getWordInstance(ULocale where) argument
470 return getBreakInstance(where.toLocale(), KIND_WORD);
489 * @param where A Locale specifying the language of the text being broken.
494 public static BreakIterator getLineInstance(Locale where) argument
496 return getBreakInstance(where, KIND_LIN
507 getLineInstance(ULocale where) argument
533 getCharacterInstance(Locale where) argument
546 getCharacterInstance(ULocale where) argument
569 getSentenceInstance(Locale where) argument
580 getSentenceInstance(ULocale where) argument
675 getBreakInstance(ULocale where, int kind) argument
679 getBreakInstance(Locale where, int kind) argument
[all...]
/external/autotest/tko/
H A Dmachine_load10 where = { 'hostname' : machine } variable
11 db.update('machines', set, where)
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
H A Dvalues.pass.cpp29 void where(const _Tp &) {} function
38 where(E::table_size);
/external/libcxx/include/support/win32/
H A Dsupport.h128 unsigned long where; local
132 if (_BitScanForward64(&where, mask))
133 return static_cast<int>(where);
137 if (_BitScanForward(&where, static_cast<unsigned long>(mask)))
138 return static_cast<int>(where);
140 if (_BitScanForward(&where, static_cast<unsigned long>(mask >> 32)))
141 return static_cast<int>(where + 32); // Create a bit offset from the LSB.
150 unsigned long where; local
153 if (_BitScanForward(&where, mask))
154 return static_cast<int>(where);
170 unsigned long where; local
192 unsigned long where; local
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBreakIterator.java40 * <li>getLineInstance() returns a BreakIterator that locates positions where it is
540 * @param where A locale specifying the language of the text to be
543 * @throws NullPointerException if <code>where</code> is null.
545 public static BreakIterator getWordInstance(Locale where) argument
547 return getBreakInstance(ULocale.forLocale(where), KIND_WORD);
552 * @param where A locale specifying the language of the text to be
555 * @throws NullPointerException if <code>where</code> is null.
557 public static BreakIterator getWordInstance(ULocale where) argument
559 return getBreakInstance(where, KIND_WORD);
577 * @param where
582 getLineInstance(Locale where) argument
595 getLineInstance(ULocale where) argument
620 getCharacterInstance(Locale where) argument
633 getCharacterInstance(ULocale where) argument
655 getSentenceInstance(Locale where) argument
666 getSentenceInstance(ULocale where) argument
693 getTitleInstance(Locale where) argument
706 getTitleInstance(ULocale where) argument
804 getBreakInstance(ULocale where, int kind) argument
857 private ULocale where; field in class:BreakIterator.BreakIteratorCache
859 BreakIteratorCache(ULocale where, BreakIterator iter) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBreakIterator.java39 * <li>getLineInstance() returns a BreakIterator that locates positions where it is
575 * @param where A locale specifying the language of the text to be
578 * @throws NullPointerException if <code>where</code> is null.
581 public static BreakIterator getWordInstance(Locale where) argument
583 return getBreakInstance(ULocale.forLocale(where), KIND_WORD);
588 * @param where A locale specifying the language of the text to be
591 * @throws NullPointerException if <code>where</code> is null.
594 public static BreakIterator getWordInstance(ULocale where) argument
596 return getBreakInstance(where, KIND_WORD);
615 * @param where
621 getLineInstance(Locale where) argument
635 getLineInstance(ULocale where) argument
662 getCharacterInstance(Locale where) argument
676 getCharacterInstance(ULocale where) argument
700 getSentenceInstance(Locale where) argument
712 getSentenceInstance(ULocale where) argument
741 getTitleInstance(Locale where) argument
756 getTitleInstance(ULocale where) argument
853 getBreakInstance(ULocale where, int kind) argument
908 private ULocale where; field in class:BreakIterator.BreakIteratorCache
910 BreakIteratorCache(ULocale where, BreakIterator iter) argument
[all...]
/external/netperf/src/
H A Dnetcpu_looper.c91 /* zero. on those systems where I do not yet know how to bind a */
106 fprintf(where,
112 fflush(where);
127 fprintf(where,
133 fflush(where);
140 fprintf(where,"bind_to_processor: unable to perform processor binding\n");
141 fprintf(where," errno %d\n",errno);
142 fflush(where);
154 fprintf(where,
159 fflush(where);
[all...]
H A Dnetserver.c255 if (where != NULL) fflush(where);
267 if ((where = fopen((suppress_debug) ? NETPERF_NULL : FileName,
280 fprintf(where,
286 fflush(where);
291 fprintf(where,
296 fflush(where);
301 fprintf(where,
306 fflush(where);
310 /* redirect stdout to "where" */
[all...]
H A Dnettest_unix.c106 -p dir Set the directory where pipes are created\n\
145 should be directed towards "where." family is generally AF_UNIX,
159 fprintf(where,
162 fflush(where);
167 fprintf(where,"create_unix_socket: socket %d obtained...\n",temp_socket);
168 fflush(where);
297 fprintf(where,"STREAM STREAM TEST\n");
299 fprintf(where,cpu_title,format_units());
301 fprintf(where,tput_title,format_units());
320 fprintf(where,"send_stream_strea
[all...]
H A Dnetcpu_kstat10.c59 fprintf(where,
80 fprintf(where,
84 fflush(where);
99 fprintf(where,"Mapping CPU instance %d to entry %d\n",
101 fflush(where);
108 fprintf(where,
113 fflush(where);
137 fprintf(where,
145 fprintf(where,
189 fprintf(where,
[all...]
H A Dnettest_dlpi.c120 fprintf(where,"put_control: putmsg error %d\n",error);
121 fflush(where);
125 fprintf(where,"put_control: getsmg error %d\n",error);
126 fflush(where);
130 fprintf(where,"put_control: acknowledgement error wanted %u got %u \n",
133 fprintf(where," dl_error_primitive: %u\n",
135 fprintf(where," dl_errno: %u\n",
137 fprintf(where," dl_unix_errno %u\n",
140 fflush(where);
154 fprintf(where,"netper
[all...]
H A Dnettest_xti.c166 /* should be directed towards "where." family is generally AF_INET, */
185 fprintf(where,"create_xti_endpoint: attempting to open %s\n",
187 fflush(where);
194 fprintf(where,
199 fflush(where);
204 fprintf(where,"create_xti_endpoint: socket %d obtained...\n",temp_socket);
205 fflush(where);
211 fprintf(where,
214 fflush(where);
219 fprintf(where,
[all...]
H A Dnetcpu_kstat.c80 fprintf(where,"open_kstat: enter\n");
81 fflush(where);
101 fprintf(where,"open_kstat double open!\n");
102 fflush(where);
111 fprintf(where,"passing kcid_changed\n");
112 fflush(where);
128 fprintf(where,"kstat_lookup for unix/system_misc\n");
129 fflush(where);
167 fprintf(where,"cpu_ks[%d] getting %p\n",ncpu,ks);
168 fflush(where);
[all...]
H A Dnettest_bsd.c272 fprintf(where, \
276 fflush(where); \
289 fprintf(where,"about to suspend\n"); \
290 fflush(where); \
293 fprintf(where, "WaitForSingleObject failed (%d)\n", GetLastError()); \
294 fflush(where); \
307 fprintf(where,"about to suspend\n"); \
308 fflush(where); \
311 fprintf(where, \
314 fflush(where); \
[all...]
/external/libunwind/src/x86_64/
H A DGstash_frame.c34 Debug (4, "ip=0x%lx cfa=0x%lx type %d cfa [where=%d val=%ld] cfaoff=%ld"
35 " ra=0x%lx rbp [where=%d val=%ld @0x%lx] rsp [where=%d val=%ld @0x%lx]\n",
37 rs->reg[DWARF_CFA_REG_COLUMN].where,
41 rs->reg[RBP].where, rs->reg[RBP].val, DWARF_GET_LOC(d->loc[RBP]),
42 rs->reg[RSP].where, rs->reg[RSP].val, DWARF_GET_LOC(d->loc[RSP]));
50 && (rs->reg[DWARF_CFA_REG_COLUMN].where == DWARF_WHERE_REG)
55 && (rs->reg[RBP].where == DWARF_WHERE_UNDEF
56 || rs->reg[RBP].where == DWARF_WHERE_SAME
57 || (rs->reg[RBP].where
[all...]
/external/guava/guava-tests/test/com/google/common/reflect/
H A DTypeResolverTest.java40 assertEquals(String.class, new TypeResolver().where(t, String.class).resolveType(t));
47 new TypeResolver().where(t1, t2).where(t2, String.class).resolveType(t1));
53 assertEquals(t, resolver.where(t, t).resolveType(t));
59 assertEquals(t, resolver.where(t, t).resolveType(t));
65 assertEquals(t, resolver.where(t, t).resolveType(t));
71 resolver.where(String.class, String.class).resolveType(String.class));
77 assertEquals(t, resolver.where(t, t).resolveType(t));
82 TypeResolver resolver = new TypeResolver().where(t, String.class);
84 resolver.where(
[all...]

Completed in 6457 milliseconds

1234567891011>>