Home
last modified time | relevance | path

Searched refs:how (Results 1 – 25 of 1396) sorted by relevance

12345678910>>...56

/external/ltrace/sysdeps/linux-gnu/aarch64/
Dfetch.c241 convert_arg(struct value *value, struct fetch_script how) in convert_arg() argument
243 switch (how.c) { in convert_arg()
259 struct value *value, struct fetch_script how) in fetch_arg() argument
261 if (convert_arg(value, how) < 0) in fetch_arg()
264 switch (how.f) { in fetch_arg()
269 if (how.hfa_t != NULL && how.count != 0 && how.count <= 8) in fetch_arg()
272 type_alignof(proc, info), how.sz); in fetch_arg()
275 return fetch_gpr(context, value, how.sz); in fetch_arg()
278 return fetch_sse(context, value, how.sz); in fetch_arg()
281 return fetch_hfa(context, value, how.hfa_t, how.count); in fetch_arg()
[all …]
/external/chromium_org/third_party/usrsctp/usrsctplib/
Duser_mbuf.h54 struct mbuf * m_gethdr(int how, short type);
55 struct mbuf * m_get(int how, short type);
57 void m_clget(struct mbuf *m, int how);
64 #define MGET(m, how, type) ((m) = m_get((how), (type))) argument
65 #define MGETHDR(m, how, type) ((m) = m_gethdr((how), (type))) argument
66 #define MCLGET(m, how) m_clget((m), (how)) argument
343 #define MBTOM(how) (how) argument
398 #define M_PREPEND(m, plen, how) do { \ argument
402 int __mhow = (how); \
/external/chromium_org/third_party/sqlite/src/test/
Dfts3atoken.test103 SELECT fts3_tokenizer_test('simple', 'I don''t see how');
105 } {{0 i I 1 don don 2 t t 3 see see 4 how how}}
108 SELECT fts3_tokenizer_test('porter', 'I don''t see how');
110 } {{0 i I 1 don don 2 t t 3 see see 4 how how}}
114 SELECT fts3_tokenizer_test('icu', 'I don''t see how');
116 } {{0 i I 1 don't don't 2 see see 3 how how}}
Dfts2token.test103 SELECT fts2_tokenizer_test('simple', 'I don''t see how');
105 } {{0 i I 1 don don 2 t t 3 see see 4 how how}}
108 SELECT fts2_tokenizer_test('porter', 'I don''t see how');
110 } {{0 i I 1 don don 2 t t 3 see see 4 how how}}
114 SELECT fts2_tokenizer_test('icu', 'I don''t see how');
116 } {{0 i I 1 don't don't 2 see see 3 how how}}
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
Dsignal.c100 pthread_sigmask (int how, sigset_t const *set, sigset_t * oset) in pthread_sigmask() argument
112 switch (how) in pthread_sigmask()
142 switch (how) in pthread_sigmask()
/external/chromium_org/native_client_sdk/src/doc/devguide/
Dindex.rst8 get your development cycle up and running (e.g., how to compile and test-run
10 to code your application (e.g., how an application is structured, and how to use
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
Dshutdown.c10 int shutdown(int fd, int how) { in shutdown() argument
11 return ki_shutdown(fd, how); in shutdown()
/external/zlib/src/contrib/blast/
Dblast.h38 typedef unsigned (*blast_in)(void *how, unsigned char **buf);
39 typedef int (*blast_out)(void *how, unsigned char *buf, unsigned len);
/external/deqp/framework/delibs/deutil/
DdeSocket.c559 int how = 0; in deSocket_shutdown() local
562 how = SD_BOTH; in deSocket_shutdown()
564 how = SD_SEND; in deSocket_shutdown()
566 how = SD_RECEIVE; in deSocket_shutdown()
568 if (shutdown(sock->handle, how) == 0) in deSocket_shutdown()
586 int how = 0; in deSocket_shutdown() local
589 how = SHUT_RDWR; in deSocket_shutdown()
591 how = SHUT_WR; in deSocket_shutdown()
593 how = SHUT_RD; in deSocket_shutdown()
595 if (shutdown(sock->handle, how) == 0) in deSocket_shutdown()
/external/chromium_org/third_party/zlib/
Dgzread.c199 state->how = GZIP;
220 state->how = COPY;
289 state->how = LOOK; /* ready for next stream, once have is 0 (leave
309 if (state->how == LOOK) { /* look for gzip header */
315 if (state->how == COPY) { /* straight copy */
320 else if (state->how == GZIP) { /* decompress */
416 else if (state->how == LOOK || len < (state->size << 1)) {
426 else if (state->how == COPY) { /* read directly */
619 if (state->how == LOOK && state->have == 0)
/external/chromium_org/tools/valgrind/
Dchrome_tests.bat41 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/dr-memory"
42 echo "for the instructions on how to get them."
57 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/threadsanitizer/threadsanitizer…
58 echo "for the instructions on how to get them."
/external/chromium_org/native_client_sdk/src/doc/devguide/coding/
Dindex.rst8 useful to understand in order to code your application---e.g., how an
9 application is structured, and how to use the Pepper APIs.
/external/chromium_org/native_client_sdk/src/doc/
Dquick-start.rst10 Client is, how a Native Client application is structured and to get a feel
15 tutorial walks you through how to get Native Client set up for the first
18 of the examples. You can learn how to build and run the example applications
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
Dgzread.c139 state->how = GZIP; in gz_look()
162 state->how = COPY; in gz_look()
214 state->how = LOOK; in gz_decomp()
232 switch(state->how) { in gz_fetch()
236 if (state->how == LOOK) in gz_fetch()
345 else if (state->how == LOOK || len < (state->size << 1)) { in gzread()
355 else if (state->how == COPY) { /* read directly */ in gzread()
559 if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0) in gzdirect()
/external/qemu/distrib/zlib-1.2.8/
Dgzread.c139 state->how = GZIP;
162 state->how = COPY;
214 state->how = LOOK;
232 switch(state->how) {
236 if (state->how == LOOK)
345 else if (state->how == LOOK || len < (state->size << 1)) {
355 else if (state->how == COPY) { /* read directly */
559 if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0)
/external/zlib/src/
Dgzread.c139 state->how = GZIP;
162 state->how = COPY;
214 state->how = LOOK;
232 switch(state->how) {
236 if (state->how == LOOK)
345 else if (state->how == LOOK || len < (state->size << 1)) {
355 else if (state->how == COPY) { /* read directly */
559 if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0)
/external/clang/test/SemaCXX/
Dswitch.cpp46 template <En how> void foo() { in foo()
49 switch (how) { //expected-warning {{no case matching constant switch condition '2'}} in foo()
/external/chromium_org/third_party/libyuv/tools/valgrind-libyuv/
Dlibyuv_tests.bat50 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/dr-memory"
51 echo "for the instructions on how to get them."
66 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/threadsanitizer/threadsanitizer…
67 echo "for the instructions on how to get them."
/external/icu/icu4c/source/samples/
Dreadme.txt7 break - demonstrates how to use BreakIterators in C and C++.
11 case - demonstrates how to do Unicode case conversion in C and C++.
29 strsrch - demonstrates how to search for patterns in Unicode text using the usearch interface.
33 uciter8.c - demonstrates how to leniently read 8-bit Unicode text.
/external/bison/lib/
Dsignal.in.h134 (int how, const sigset_t *new_mask, sigset_t *old_mask));
136 (int how, const sigset_t *new_mask, sigset_t *old_mask));
140 (int how, const sigset_t *new_mask, sigset_t *old_mask));
143 (int how, const sigset_t *new_mask, sigset_t *old_mask));
/external/chromium_org/third_party/icu/source/samples/
Dreadme.txt7 break - demonstrates how to use BreakIterators in C and C++.
11 case - demonstrates how to do Unicode case conversion in C and C++.
29 strsrch - demonstrates how to search for patterns in Unicode text using the usearch interface.
33 uciter8.c - demonstrates how to leniently read 8-bit Unicode text.
/external/chromium_org/third_party/tcmalloc/vendor/
DTODO4 * Find out how to force non-glibc STL libraries to call new() and
13 6) Figure out how to get setenv() to work properly before main() in
37 1) Figure out how to get setenv() to work properly before main() in
/external/chromium_org/v8/tools/v8.xcodeproj/
DREADME.txt5 file explaining how to get started.
7 Generating Xcode projects using GYP is how the Chromium
/external/clang/docs/
DLibASTMatchers.rst5 This document explains how to use Clang's LibASTMatchers to match interesting
12 about how the AST is structured.
45 when trying to figure out how to create a matcher for a specific pattern. This
46 section will teach you how to use a rigorous step-by-step pattern to build the
48 for some part of the AST. See the section about :ref:`how to write your own
53 The precondition to using the matchers is to understand how the AST for what you
56 how to dump a translation unit's AST into a human readable format.
/external/chromium_org/third_party/skia/trybots_to_run/chrome/
DREADME.txt3 …- https://sites.google.com/site/skiadocs/developer-documentation/managing-chrome-s-use-of-skia/how
4 …- https://sites.google.com/site/skiadocs/developer-documentation/managing-chrome-s-use-of-skia/how

12345678910>>...56