HomeSort by relevance Sort by last modified time
    Searched full:pth (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/valgrind/main/memcheck/tests/darwin/
pth-supp.vgtest 1 prog: pth-supp
Makefile.am 11 pth-supp.stderr.exp pth-supp.vgtest \
20 pth-supp \
  /external/clang/test/Preprocessor/
include-pth.c 1 // RUN: %clang_cc1 -emit-pth %s -o %t
2 // RUN: %clang_cc1 -include-pth %t %s -E | grep 'file_to_include' | count 2
  /external/clang/test/Driver/
pth.c 1 // Test transparent PTH support.
3 // RUN: %clang -no-canonical-prefixes -ccc-pch-is-pth -x c-header %s -o %t.h.pth -### 2> %t.log
6 // CHECK1: "{{.*[/\\]}}clang{{.*}}" "-cc1" {{.*}} "-o" "{{.*}}.h.pth" "-x" "c-header" "{{.*}}pth.c"
8 // RUN: touch %t.h.pth
9 // RUN: %clang -no-canonical-prefixes -ccc-pch-is-pth -E -include %t.h %s -### 2> %t.log
12 // CHECK2: "{{.*[/\\]}}clang{{.*}}" "-cc1" {{.*}}"-include-pth" "{{.*}}.h.pth" {{.*}}"-x" "c" "{{.*}}pth.c
    [all...]
  /external/clang/test/PCH/
pth.c 1 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-pth -o %t %S/pth.h
2 // RUN: not %clang_cc1 -triple i386-unknown-unknown -include-pth %t -fsyntax-only %s 2>&1 | FileCheck %s
pth.h 1 // This case came up when using PTH with Boost (<rdar://problem/8227989>).
  /external/clang/docs/
PTHInternals.rst 2 Pretokenized Headers (PTH)
5 This document first describes the low-level interface for using PTH and
14 options for generating and using PTH files.
16 To generate PTH files using ``clang -cc1``, use the option ``-emit-pth``:
20 $ clang -cc1 test.h -emit-pth -o test.h.pth
22 This option is transparently used by ``clang`` when generating PTH
23 files. Similarly, PTH files can be used as prefix headers using the
24 ``-include-pth`` option
    [all...]
  /external/clang/include/clang/Lex/
PTHManager.h 1 //===--- PTHManager.h - Manager object for PTH processing -------*- C++ -*-===//
39 /// The memory mapped PTH file.
50 /// and token data in the PTH file.
54 /// data offset within the PTH file containing the information to
62 /// NumIds - The number of identifiers in the PTH file.
69 /// SpellingBase - The base offset within the PTH memory buffer that
74 /// if the file (if any) that was to used to generate the PTH cache.
92 /// PTH file.
102 // The current PTH version.
108 /// file name that was used to generate the PTH cache
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/pth/
SDL_systhread.c 25 * GNU pth threads
30 #include <pth.h>
57 SDL_SetError("Couldn't initialize pth attributes");
SDL_systhread_c.h 27 #include <pth.h>
SDL_sysmutex.c 25 * GNU pth mutexes
30 #include <pth.h>
SDL_syscond.c 25 * GNU pth conditions variables
30 #include <pth.h>
  /external/valgrind/main/none/tests/
thread-exits.c 92 pthread_t pth; local
120 pthread_create(&pth, NULL, maker, NULL);
130 pthread_join(pth, NULL);
  /external/clang/lib/Frontend/
CacheTokens.cpp 1 //===--- CacheTokens.cpp - Caching of lexer tokens for PTH support --------===//
10 // This provides a possible implementation of PTH support for Clang that is
40 // PTH-specific stuff.
144 // For file entries emit the offsets into the PTH file for token data
186 /// Emit a token to the PTH file.
204 /// EmitIdentifierTable - Emits two tables to the PTH file. The first is
210 /// EmitFileTable - Emit a table mapping from file name strings to PTH
254 // If this is a new string entry, bump the PTH offset.
261 // Emit the relative offset into the PTH file for the spelling string.
370 // This will later be set to zero when emitting to the PTH file. W
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/m4/
threadlib.m4 49 AC_HELP_STRING([--enable-threads={posix|solaris|pth|win32}], [specify multithreading API])
194 if test "$gl_use_threads" = pth; then
196 AC_LIB_LINKFLAGS([pth])
200 AC_TRY_LINK([#include <pth.h>], [pth_self();], [gl_have_pth=yes])
203 gl_threads_api=pth
209 [Define if the GNU Pth multithreading library can be used.])
213 [Define if references to the GNU Pth multithreading library should be made weak.])
303 dnl Any of the above pth -lpth 0.0
  /external/clang/lib/Lex/
PTHLexer.cpp 300 // PTH file lookup: map from strings to file data.
305 /// the PTH file.
436 // Memory map the PTH file.
451 if ((BufEnd - BufBeg) < (signed)(sizeof("cfe-pth") + 4 + 4) ||
452 memcmp(BufBeg, "cfe-pth", sizeof("cfe-pth")) != 0) {
457 // Read the PTH version.
458 const unsigned char *p = BufBeg + (sizeof("cfe-pth"));
464 ? "PTH file uses an older PTH format that is no longer supported
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_site.py 78 """Contain common code for testing results of reading a .pth file"""
87 # comment or import that is a valid directory name for where the .pth
100 # Create a .pth file and return its (abspath, basename).
102 pth_basename = pth_name + '.pth'
153 # calls addpackage() for every .pth file in the directory
258 """Helper class for handling testing of .pth files"""
263 self.filename = filename_base + ".pth"
273 """Create a .pth file with a comment, blank lines, an ``import
295 """Make sure that the .pth file is deleted, self.imported is not in
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_site.py 78 """Contain common code for testing results of reading a .pth file"""
87 # comment or import that is a valid directory name for where the .pth
100 # Create a .pth file and return its (abspath, basename).
102 pth_basename = pth_name + '.pth'
153 # calls addpackage() for every .pth file in the directory
258 """Helper class for handling testing of .pth files"""
263 self.filename = filename_base + ".pth"
273 """Create a .pth file with a comment, blank lines, an ``import
295 """Make sure that the .pth file is deleted, self.imported is not in
  /external/bluetooth/bluedroid/btif/src/
btif_sock_rfc.c 100 static volatile int pth = -1; //poll thread handle variable
109 #define is_init_done() (pth != -1)
146 pth = poll_thread_handle;
152 int curr_pth = pth;
153 pth = -1;
341 btsock_thread_add_fd(pth, rs->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_EXCEPTION, rs->id);
371 btsock_thread_add_fd(pth, rs->fd, BTSOCK_RFCOMM,
402 btsock_thread_add_fd(pth, rs->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_RD, rs->id);
602 btsock_thread_add_fd(pth, srv_rs->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_EXCEPTION, srv_rs->id);
603 btsock_thread_add_fd(pth, accept_rs->fd, BTSOCK_RFCOMM, SOCK_THREAD_FD_RD, accept_rs->id)
    [all...]
  /external/chromium/base/
shared_memory_unittest.cc 241 PlatformThreadHandle pth; local
243 EXPECT_TRUE(PlatformThread::Create(0, thread_delegates[index], &pth));
244 thread_handles[index] = pth;
270 PlatformThreadHandle pth; local
272 EXPECT_TRUE(PlatformThread::Create(0, thread_delegates[index], &pth));
273 thread_handles[index] = pth;
  /external/bison/m4/
threadlib.m4 56 AC_HELP_STRING([--enable-threads={posix|solaris|pth|windows}], [specify multithreading API])m4_ifdef([gl_THREADLIB_DEFAULT_NO], [], [
248 if test "$gl_use_threads" = pth; then
250 AC_LIB_LINKFLAGS([pth])
255 [AC_LANG_PROGRAM([[#include <pth.h>]], [[pth_self();]])],
259 gl_threads_api=pth
265 [Define if the GNU Pth multithreading library can be used.])
269 [Define if references to the GNU Pth multithreading library should be made weak.])
361 dnl Any of the above pth -lpth 0.0
  /external/qemu/distrib/sdl-1.2.15/src/thread/
SDL_thread_c.h 37 #include "pth/SDL_systhread_c.h"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
site.py 23 <package>.pth; its contents are additional directories (one per line)
32 configuration files, foo.pth and bar.pth. Assume foo.pth contains the
40 and bar.pth contains:
51 because bar.pth comes alphabetically before foo.pth; and spam is
132 """Process a .pth file within the site-packages directory:
173 """Add 'sitedir' argument to sys.path if missing and handle .pth files in
187 dotpth = os.extsep + "pth"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
site.py 23 <package>.pth; its contents are additional directories (one per line)
32 configuration files, foo.pth and bar.pth. Assume foo.pth contains the
40 and bar.pth contains:
51 because bar.pth comes alphabetically before foo.pth; and spam is
132 """Process a .pth file within the site-packages directory:
173 """Add 'sitedir' argument to sys.path if missing and handle .pth files in
187 dotpth = os.extsep + "pth"
    [all...]
  /external/qemu/distrib/sdl-1.2.15/
README.MiNT 27 --disable-pthreads --enable-pth
60 Timer (VBL vector, GNU pth library)
63 Threads (Multitasking OS only via GNU pth library)
94 (2) If you build SDL with threads using the GNU pth library, timers are
95 supported via the pth library.
217 PTH timer driver:

Completed in 687 milliseconds

1 2 3 4 5