search for: 484,10

Displaying 18 results from an estimated 18 matches for "484,10".

Did you mean: 284,10
2007 Mar 15
1
my_isspace can be isblank
...//depot/opensource/main/syslinux-3/com32/modules/menumain.c#2 +++ com32/modules/menumain.c 07-03-15 16:26:57 @@ -30,6 +30,7 @@ #include <sha1.h> #include <base64.h> #include <colortbl.h> +#include <ctype.h> #ifdef __COM32__ #include <com32.h> #endif @@ -483,10 +484,10 @@ if ( cursor ) { int prevcursor = cursor; - while ( cursor && my_isspace(cmdline[cursor-1]) ) + while ( cursor && isblank(cmdline[cursor-1]) ) cursor--; - while ( cursor && !my_isspace(cmdline[cursor-1]) ) + while ( cursor && !isblank(cmdline[curs...
2015 Nov 19
0
[PATCH] Clean up formatting of configure output for ARM intrinsics detection.
...". It also fixes the output if a compiler supports RTCD for Neon intrinsics but not assembly. --- configure.ac | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index e1a6e9b..90a06c8 100644 --- a/configure.ac +++ b/configure.ac @@ -484,10 +484,12 @@ AS_IF([test x"$enable_intrinsics" = x"yes"],[ AS_IF([test x"$OPUS_ARM_MAY_HAVE_NEON_INTR" = x"1"], [ AC_DEFINE([OPUS_ARM_MAY_HAVE_NEON_INTR], 1, [Compiler supports ARMv7/Aarch64 Neon Intrinsics]) - intrinsics_supp...
2015 Aug 12
0
[PATCH 2/2] inspect: support the APK package manager and its format
...return NULL; break; + case OS_PACKAGE_FORMAT_APK: case OS_PACKAGE_FORMAT_EBUILD: case OS_PACKAGE_FORMAT_PISI: case OS_PACKAGE_FORMAT_PKGSRC: diff --git a/src/inspect-fs.c b/src/inspect-fs.c index 94c5bb9..aa198ad 100644 --- a/src/inspect-fs.c +++ b/src/inspect-fs.c @@ -484,6 +484,10 @@ guestfs_int_check_package_format (guestfs_h *g, struct inspect_fs *fs) fs->package_format = OS_PACKAGE_FORMAT_PISI; break; + case OS_DISTRO_ALPINE_LINUX: + fs->package_format = OS_PACKAGE_FORMAT_APK; + break; + case OS_DISTRO_SLACKWARE: case OS_DISTRO_TTY...
2015 Aug 12
2
[PATCH 1/2] inspect: recognize the Alpine Linux distribution
Just basic identification, name and version. --- generator/actions.ml | 4 ++++ src/guestfs-internal.h | 1 + src/inspect-fs-unix.c | 10 ++++++++++ src/inspect-fs.c | 2 ++ src/inspect-icon.c | 1 + src/inspect.c | 1 + 6 files changed, 19 insertions(+) diff --git a/generator/actions.ml b/generator/actions.ml index 35af981..26cc0da 100644 --- a/generator/actions.ml
2007 Jan 29
0
Branch 'interpreter' - 18 commits - libswfdec/swfdec_image.c libswfdec/swfdec_image.h libswfdec/swfdec_js.c libswfdec/swfdec_js_color.c libswfdec/swfdec_js_sound.c libswfdec/swfdec_pattern.c libswfdec/swfdec_scriptable.c libswfdec/swfdec_script.c
...s) Merge: bf21308d97b50d9867f2c084122e5fc0cfd85f6e 2cb8680a8577ff5d018b50e7da55c233e8eaa4af Author: Benjamin Otte <otte@gnome.org> Date: Sun Jan 28 15:02:44 2007 +0100 Merge branch 'master' into interpreter diff --cc libswfdec/swfdec_image.c index 2810291,0cf6502..725ce74 @@@ -484,10 -512,9 +484,10 @@@ } } } +#endif } - swfdec_image_create_surface (image, image_data); + swfdec_image_create_surface (image, image_data, have_alpha); } int diff-tree bf21308d97b50d9867f2c084122e5fc0cfd85f6e (from e06edd91cd480f68e8612517abac3aa7a287abab)...
2015 Nov 21
8
[Aarch64 v2 10/18] Clean up some intrinsics-related wording in configure.
--- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index f52d2c2..e1a6e9b 100644 --- a/configure.ac +++ b/configure.ac @@ -190,7 +190,7 @@ AC_ARG_ENABLE([rtcd], [enable_rtcd=yes]) AC_ARG_ENABLE([intrinsics], - [AS_HELP_STRING([--disable-intrinsics], [Disable intrinsics optimizations for ARM(float) X86(fixed)])],, +
2007 Jan 06
1
Re: [nut-commits] svn commit r710 - in trunk: . clients server
...s_check(&csock)) { > upslogx(LOG_NOTICE, "Rejecting TCP connection from %s", > +#ifndef HAVE_IPV6 > + inet_ntoa(csock.sin_addr)); > +#else > inet_ntopW(&csock)); > +#endif > shutdown(acc, shutdown_how); > close(acc); > return; > @@ -484,10 +531,18 @@ > > tmp = xmalloc(sizeof(ctype)); > > +#ifndef HAVE_IPV6 > + tmp->addr = xstrdup(inet_ntoa(csock.sin_addr)); > +#else > tmp->addr = xstrdup(inet_ntopW(&csock)); > +#endif > tmp->fd = acc; > tmp->delete = 0; > +#ifndef HAVE_I...
2007 Aug 10
9
[PATCH 0/25 -v2] paravirt_ops for x86_64, second round
Here is an slightly updated version of the paravirt_ops patch. If your comments and criticism were welcome before, now it's even more! There are some issues that are _not_ addressed in this revision, and here are the causes: * split debugreg into multiple functions, suggested by Andi: - Me and jsfg agree that introducing more pvops (specially 14!) is not worthwhile. So, although we do
2007 Aug 10
9
[PATCH 0/25 -v2] paravirt_ops for x86_64, second round
Here is an slightly updated version of the paravirt_ops patch. If your comments and criticism were welcome before, now it's even more! There are some issues that are _not_ addressed in this revision, and here are the causes: * split debugreg into multiple functions, suggested by Andi: - Me and jsfg agree that introducing more pvops (specially 14!) is not worthwhile. So, although we do
2007 Jan 06
3
Re: [nut-commits] svn commit r708 - in trunk: . clients server
...-424,7 +469,7 @@ > > if (!access_check(&csock)) { > upslogx(LOG_NOTICE, "Rejecting TCP connection from %s", > - inet_ntoa(csock.sin_addr)); > + inet_ntopW(&csock)); > shutdown(acc, shutdown_how); > close(acc); > return; > @@ -439,10 +484,10 @@ > > tmp = xmalloc(sizeof(ctype)); > > - tmp->addr = xstrdup(inet_ntoa(csock.sin_addr)); > + tmp->addr = xstrdup(inet_ntopW(&csock)); > tmp->fd = acc; > tmp->delete = 0; > - memcpy(&tmp->sock, &csock, sizeof(struct sockaddr_in)); &gt...
2007 Aug 15
13
[PATCH 0/25][V3] pvops_64 last round (hopefully)
This is hopefully the last iteration of the pvops64 patch. >From the last version, we have only one change, which is include/asm-x86_64/processor.h: There were still one survivor in raw asm. Also, git screwed me up for some reason, and the 25th patch was missing the new files, paravirt.{c,h}. (although I do remember having git-add'ed it, but who knows...) Andrew, could you please push it
2007 Aug 15
13
[PATCH 0/25][V3] pvops_64 last round (hopefully)
This is hopefully the last iteration of the pvops64 patch. >From the last version, we have only one change, which is include/asm-x86_64/processor.h: There were still one survivor in raw asm. Also, git screwed me up for some reason, and the 25th patch was missing the new files, paravirt.{c,h}. (although I do remember having git-add'ed it, but who knows...) Andrew, could you please push it
2019 Oct 04
6
[nbdkit PATCH 0/5] Another round of retry fixes
I still don't have .prepare/.finalize working cleanly across reopen, but did find a nasty bug where a botched assertion means we failed to notice reads beyond EOF in both the xz and retry filter. Refactoring backend.c will make .finalize work easier. Eric Blake (5): xz: Avoid reading beyond EOF retry: Check size before transactions tests: Test retry when get_size values change
2007 Oct 18
0
18 commits - doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_flash_security.c
...ect); - swfdec_load_object_load (SWFDEC_LOAD_OBJECT (load_object), url, request, data); - return load_object; } diff --git a/libswfdec/swfdec_net_stream.c b/libswfdec/swfdec_net_stream.c index 59cb836..135bae8 100644 --- a/libswfdec/swfdec_net_stream.c +++ b/libswfdec/swfdec_net_stream.c @@ -484,8 +484,10 @@ swfdec_net_stream_set_url (SwfdecNetStream *stream, const char *url) /* FIXME: use the connection once connections are implemented */ loader = swfdec_player_load (SWFDEC_PLAYER (SWFDEC_AS_OBJECT (stream)->context), url, SWFDEC_LOADER_REQUEST_DEFAULT, NULL); - swfdec_ne...
2020 Oct 17
10
[RFC] treewide: cleanup unreachable breaks
...k; case TRANSMITTER_UNIPHY_F: return 5; - break; case TRANSMITTER_UNIPHY_G: return 6; - break; default: ASSERT(0); return 0; } } diff --git a/drivers/gpu/drm/amd/display/dc/dce60/dce60_resource.c b/drivers/gpu/drm/amd/display/dc/dce60/dce60_resource.c index 5a5a9cb77acb..e9dd78c484d6 100644 --- a/drivers/gpu/drm/amd/display/dc/dce60/dce60_resource.c +++ b/drivers/gpu/drm/amd/display/dc/dce60/dce60_resource.c @@ -451,29 +451,22 @@ static int map_transmitter_id_to_phy_instance( enum transmitter transmitter) { switch (transmitter) { case TRANSMITTER_UNIPHY_A: return 0;...
2020 Oct 17
10
[RFC] treewide: cleanup unreachable breaks
...k; case TRANSMITTER_UNIPHY_F: return 5; - break; case TRANSMITTER_UNIPHY_G: return 6; - break; default: ASSERT(0); return 0; } } diff --git a/drivers/gpu/drm/amd/display/dc/dce60/dce60_resource.c b/drivers/gpu/drm/amd/display/dc/dce60/dce60_resource.c index 5a5a9cb77acb..e9dd78c484d6 100644 --- a/drivers/gpu/drm/amd/display/dc/dce60/dce60_resource.c +++ b/drivers/gpu/drm/amd/display/dc/dce60/dce60_resource.c @@ -451,29 +451,22 @@ static int map_transmitter_id_to_phy_instance( enum transmitter transmitter) { switch (transmitter) { case TRANSMITTER_UNIPHY_A: return 0;...
2012 Apr 30
5
[PATCH 0/4 v1] Remove gettextify, implement OCaml gettext.
Version 1 of the patch, for discussion, but not to be applied. It does work, but needs a lot more testing. This removes all the psychopathic gettextify cruft, and replaces it with a 99 line Makefile.am. A large win, I think. The third patch implements gettext support in the OCaml tools. The fourth patch is just for illustration. It shows the consequent changes to libguestfs.pot and the po
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...ript */ gpointer debugger; /* debugger owning us or NULL */ + /* needed by functions */ + SwfdecBuffer * constant_pool; /* constant pool action */ }; SwfdecScript * swfdec_script_new (SwfdecBits * bits, diff-tree ae64862c94f18618313c90c28b4071d84693b7b5 (from 71b090ccdeedb1e96b2f8590844844139b00bd85) Author: Benjamin Otte <otte@gnome.org> Date: Wed Jan 31 21:35:50 2007 +0100 implement BitAnd, BitOr, BitXor, DefineLocal, DefineLocal2 and Return diff --git a/libswfdec/swfdec_script.c b/libswfdec/swfdec_script.c index 9b3a328..46ba618 100644 --- a/libswfdec/swfdec_script....