Searched refs:plat (Results 1 - 22 of 22) sorted by relevance

/external/libunwind/tests/
H A Dcheck-namespace.sh.in9 plat=@arch@
14 LIBUNWIND_GENERIC=../src/.libs/libunwind-${plat}.so
75 if [ ${plat} = "arm" ]; then
82 if [ ${plat} = "mips" ]; then
91 match _UL${plat}_create_addr_space
92 match _UL${plat}_destroy_addr_space
93 match _UL${plat}_get_fpreg
94 match _UL${plat}_get_proc_info
95 match _UL${plat}_get_proc_info_by_ip
96 match _UL${plat}_get_proc_nam
[all...]
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dlist_ports_posix.py27 plat = sys.platform.lower() variable
29 if plat[:5] == 'linux': # Linux (confirmed)
32 elif plat == 'cygwin': # cygwin/win32
37 elif plat[:7] == 'openbsd': # OpenBSD
42 elif plat[:3] == 'bsd' or \
43 plat[:7] == 'freebsd':
49 elif plat[:6] == 'darwin': # OS X (confirmed)
52 elif plat[:6] == 'netbsd': # NetBSD
58 elif plat[:4] == 'irix': # IRIX
64 elif plat[
[all...]
H A Dlist_ports_linux.py40 plat = sys.platform.lower() variable
/external/libvpx/libvpx/build/make/
H A Dgen_msvs_vcxproj.sh166 for plat in "${platforms[@]}"; do
169 Condition="'\$(Configuration)|\$(Platform)'=='$cfg|$plat'"
171 Condition="'\$(Configuration)|\$(Platform)'=='$cfg|$plat'"
173 Condition="'\$(Configuration)|\$(Platform)'=='$cfg|$plat'"
351 for plat in "${platforms[@]}"; do
354 Include="$config|$plat"
356 tag_content Platform $plat
372 for plat in "${platforms[@]}"; do
375 Condition="'\$(Configuration)|\$(Platform)'=='$config|$plat'" \
385 if [ "$plat"
[all...]
H A Dgen_msvs_proj.sh150 for plat in "${platforms[@]}"; do
153 Name="${cfg}|${plat}" \
167 for plat in "${platforms[@]}"; do
170 Name="${cfg}|${plat}" \
343 for plat in "${platforms[@]}"; do
344 tag Platform Name="$plat"
349 for plat in "${platforms[@]}"; do
350 plat_no_ws=`echo $plat | sed 's/[^A-Za-z0-9_]/_/g'`
352 Name="Debug|$plat" \
456 Name="Release|$plat" \
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dgen_msvs_vcxproj.sh92 for plat in "${platforms[@]}"; do
95 Condition="'\$(Configuration)|\$(Platform)'=='$cfg|$plat'"
97 Condition="'\$(Configuration)|\$(Platform)'=='$cfg|$plat'"
99 Condition="'\$(Configuration)|\$(Platform)'=='$cfg|$plat'"
288 for plat in "${platforms[@]}"; do
291 Include="$config|$plat"
293 tag_content Platform $plat
321 for plat in "${platforms[@]}"; do
324 Condition="'\$(Configuration)|\$(Platform)'=='$config|$plat'" \
334 if [ "$plat"
[all...]
H A Dgen_msvs_proj.sh76 for plat in "${platforms[@]}"; do
79 Name="${cfg}|${plat}" \
93 for plat in "${platforms[@]}"; do
96 Name="${cfg}|${plat}" \
280 for plat in "${platforms[@]}"; do
281 tag Platform Name="$plat"
286 for plat in "${platforms[@]}"; do
287 plat_no_ws=`echo $plat | sed 's/[^A-Za-z0-9_]/_/g'`
289 Name="Debug|$plat" \
393 Name="Release|$plat" \
[all...]
/external/blktrace/btt/
H A DAndroid.mk9 unplug_hist.c q2d.c aqd.c plat.c
H A DMakefile20 aqd.o plat.o
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Degldisplay.c87 _EGLPlatformType plat = _EGL_INVALID_PLATFORM; local
100 plat = egl_platforms[i].platform;
105 return plat;
250 _eglFindDisplay(_EGLPlatformType plat, void *plat_dpy) argument
254 if (plat == _EGL_INVALID_PLATFORM)
262 if (dpy->Platform == plat && dpy->PlatformDisplay == plat_dpy)
272 dpy->Platform = plat;
H A Degldisplay.h168 _eglFindDisplay(_EGLPlatformType plat, void *plat_dpy);
H A Deglapi.c298 _EGLPlatformType plat = _eglGetNativePlatform(nativeDisplay); local
299 _EGLDisplay *dpy = _eglFindDisplay(plat, (void *) nativeDisplay);
/external/mesa3d/src/egl/main/
H A Degldisplay.c87 _EGLPlatformType plat = _EGL_INVALID_PLATFORM; local
100 plat = egl_platforms[i].platform;
105 return plat;
250 _eglFindDisplay(_EGLPlatformType plat, void *plat_dpy) argument
254 if (plat == _EGL_INVALID_PLATFORM)
262 if (dpy->Platform == plat && dpy->PlatformDisplay == plat_dpy)
272 dpy->Platform = plat;
H A Degldisplay.h168 _eglFindDisplay(_EGLPlatformType plat, void *plat_dpy);
H A Deglapi.c298 _EGLPlatformType plat = _eglGetNativePlatform(nativeDisplay); local
299 _EGLDisplay *dpy = _eglFindDisplay(plat, (void *) nativeDisplay);
/external/pixman/pixman/
H A Dpixman-arm.c165 const char *plat = (const char*) aux.a_un.a_val; local
167 if (strncmp (plat, "v7l", 3) == 0)
169 else if (strncmp (plat, "v6l", 3) == 0)
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Dserialposix.py32 plat = sys.platform.lower() variable
34 if plat[:5] == 'linux': # Linux (confirmed)
95 elif plat == 'cygwin': # cygwin/win32 (confirmed)
117 elif plat[:7] == 'openbsd': # OpenBSD
127 elif plat[:3] == 'bsd' or \
128 plat[:7] == 'freebsd':
138 elif plat[:6] == 'darwin': # OS X
159 elif plat[:6] == 'netbsd': # NetBSD 1.6 testing by Erk
169 elif plat[:4] == 'irix': # IRIX (partially tested)
179 elif plat[
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dgenerate_make.py70 for plat in plat_list:
71 if plat in plat_filter:
72 platforms.append(plat)
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
H A Degl_g3d.c96 egl_g3d_get_platform(_EGLDriver *drv, _EGLPlatformType plat) argument
100 if (!gdrv->platforms[plat]) {
104 switch (plat) {
154 gdrv->platforms[plat] = nplat;
157 return gdrv->platforms[plat];
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d.c96 egl_g3d_get_platform(_EGLDriver *drv, _EGLPlatformType plat) argument
100 if (!gdrv->platforms[plat]) {
104 switch (plat) {
154 gdrv->platforms[plat] = nplat;
157 return gdrv->platforms[plat];
/external/chromium_org/third_party/skia/bench/
H A Dtile_analyze.py255 dest='plat', default=DEFAULT_PLATFORM,
274 rev, options.alg, options.log_dir, options.plat)
/external/skia/bench/
H A Dtile_analyze.py255 dest='plat', default=DEFAULT_PLATFORM,
274 rev, options.alg, options.log_dir, options.plat)

Completed in 2417 milliseconds