Displaying 16 results from an estimated 16 matches for "56,18".
2011 Aug 25
1
[PATCH] Correctly build febootstrap on systems without native OCaml compiler
...uot;$(OCAMLFIND) $(OCAMLBEST)" was resolved as
"ocamlfind byte" which did not work.
---
Makefile.am | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 109d2c8..4dc6f12 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -56,18 +56,18 @@ SOURCES_ML = $(filter %.ml,$(SOURCES))
BOBJECTS = $(SOURCES_ML:.ml=.cmo)
XOBJECTS = $(SOURCES_ML:.ml=.cmx)
-if !HAVE_OCAMLOPT
-OBJECTS = $(BOBJECTS)
-else
-OBJECTS = $(XOBJECTS)
-endif
-
OCAMLPACKAGES = -package unix,str
OCAMLFLAGS = -warn-error CDEFLMPSUVXYZ
-febootstrap: $(OB...
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...inc))
+CSRC := $(shell find $(SRC) -name '*.c' -print | sort)
+SSRC := $(shell find $(SRC) -name '*.S' -print | sort)
+CHDR := $(shell find $(SRC) -name '*.h' -print | sort)
OTHERSRC := keywords
ALLSRC = $(NASMSRC) $(NASMHDR) $(CSRC) $(SSRC) $(CHDR) $(OTHERSRC)
@@ -56,18 +56,18 @@ CORE_PXE_CSRC = \
$(addprefix $(SRC)/fs/pxe/, dhcp_option.c pxe.c tftp.c urlparse.c bios.c)
LPXELINUX_CSRC = $(CORE_PXE_CSRC) \
- $(shell find $(SRC)/lwip -name '*.c' -print) \
+ $(shell find $(SRC)/lwip -name '*.c' -print | sort) \
$(addprefix $(SRC)/fs/pxe/, \...
2018 Feb 09
3
[PATCH] Add a cache for iconv_t handles to hive_t
..._len;
+ iconv_t *ic = _hivex_get_iconv (h, t);
again:;
size_t inlen = input_len;
size_t outlen = outalloc;
char *out = malloc (outlen + 1);
if (out == NULL) {
int err = errno;
- iconv_close (ic);
+ _hivex_release_iconv (h, t);
errno = err;
return NULL;
}
@@ -56,18 +53,17 @@ _hivex_recode (const char *input_encoding, const char *input, size_t input_len,
size_t r = iconv (ic, (ICONV_CONST char **) &inp, &inlen, &outp, &outlen);
if (r == (size_t) -1) {
+ int err = errno;
if (errno == E2BIG) {
- int err = errno;
/*...
2018 Feb 09
0
Re: [PATCH] Add a cache for iconv_t handles to hive_t
...in:;
> size_t inlen = input_len;
> size_t outlen = outalloc;
> char *out = malloc (outlen + 1);
> if (out == NULL) {
> int err = errno;
> - iconv_close (ic);
> + _hivex_release_iconv (h, t);
> errno = err;
> return NULL;
> }
> @@ -56,18 +53,17 @@ _hivex_recode (const char *input_encoding, const char *input, size_t input_len,
>
> size_t r = iconv (ic, (ICONV_CONST char **) &inp, &inlen, &outp, &outlen);
> if (r == (size_t) -1) {
> + int err = errno;
> if (errno == E2BIG) {
> -...
2018 Feb 09
2
[PATCH] Add a cache for iconv_t handles to hive_t
..._len;
+ iconv_t *ic = _hivex_get_iconv (h, t);
again:;
size_t inlen = input_len;
size_t outlen = outalloc;
char *out = malloc (outlen + 1);
if (out == NULL) {
int err = errno;
- iconv_close (ic);
+ _hivex_release_iconv (h, t);
errno = err;
return NULL;
}
@@ -56,18 +53,17 @@ _hivex_recode (const char *input_encoding, const char *input, size_t input_len,
size_t r = iconv (ic, (ICONV_CONST char **) &inp, &inlen, &outp, &outlen);
if (r == (size_t) -1) {
+ int err = errno;
if (errno == E2BIG) {
- int err = errno;
/*...
2014 Dec 07
0
[RFC PATCH v2] armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
...;& \
+ (defined(OPUS_ARM_ASM) || defined(OPUS_ARM_NEON_INTR))
extern
# if defined(FIXED_POINT)
opus_val32
diff --git a/celt/tests/test_unit_mathops.c b/celt/tests/test_unit_mathops.c
index 3076bbf..2db87be 100644
--- a/celt/tests/test_unit_mathops.c
+++ b/celt/tests/test_unit_mathops.c
@@ -56,10 +56,18 @@
#include "x86/celt_lpc_sse.c"
#endif
#include "x86/x86_celt_map.c"
-#elif defined(OPUS_ARM_ASM) && defined(FIXED_POINT)
+#endif
+
+#if defined(OPUS_ARM_NEON_INTR)
+#include "arm/celt_neon_intr.c"
+#endif
+
+#if ((defined(OPUS_ARM_ASM) &&...
2007 Mar 21
0
[906] branches/wxruby2/wxwidgets_282: Wx::ComboBox API 2.6 -> 2.8, plus some doc corrections
...t;/span><del>-
</del><span class="cx"> See also "window styles overview":windowstyles.html.
</span><span class="cx">
</span><span class="cx"> h2. Event handling
</span><span class="lines">@@ -56,16 +56,18 @@
</span><span class="cx"> * "ComboBox#can_undo":#ComboBox_canundo
</span><span class="cx"> * "ComboBox#copy":#ComboBox_copy
</span><span class="cx"> * "ComboBox#cut":#ComboBox_cut
</span&g...
2014 Dec 07
3
[RFC PATCH v2] cover: armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
From: Viswanath Puttagunta <viswanath.puttagunta at linaro.org>
Hi,
Optimizes celt_pitch_xcorr for floating point.
Changes from RFCv1:
- Rebased on top of commit
aad281878: Fix celt_pitch_xcorr_c signature.
which got rid of ugly code around CELT_PITCH_XCORR_IMPL
passing of "arch" parameter.
- Unified with --enable-intrinsics used by x86
- Modified algorithm to be more
2007 Apr 18
1
[RFC, PATCH 24/24] i386 Vmi no idle hz
...rch/s390/kernel/time.c.
* See comments there for proper credits.
*/
@@ -46,6 +47,7 @@
#include <mach_timer.h>
#include <mach_apictimer.h>
#include <mach_schedclock.h>
+#include <mach_idletimer.h>
#include <io_ports.h>
#ifdef CONFIG_X86_LOCAL_APIC
@@ -54,6 +56,18 @@
#define VMI_ALARM_WIRING VMI_ALARM_WIRED_IRQ0
#endif
+#ifdef CONFIG_NO_IDLE_HZ
+
+#define VMI_MIN_NO_IDLE_HZ_SKIPPED_TICKS 1
+
+/* /proc/sys/kernel/hz_timer state. */
+int sysctl_hz_timer;
+/* Some stats, printed in /proc/vmi/info. */
+DEFINE_PER_CPU(unsigned long, vmi_idle_no_hz_irqs);...
2007 Apr 18
1
[RFC, PATCH 24/24] i386 Vmi no idle hz
...rch/s390/kernel/time.c.
* See comments there for proper credits.
*/
@@ -46,6 +47,7 @@
#include <mach_timer.h>
#include <mach_apictimer.h>
#include <mach_schedclock.h>
+#include <mach_idletimer.h>
#include <io_ports.h>
#ifdef CONFIG_X86_LOCAL_APIC
@@ -54,6 +56,18 @@
#define VMI_ALARM_WIRING VMI_ALARM_WIRED_IRQ0
#endif
+#ifdef CONFIG_NO_IDLE_HZ
+
+#define VMI_MIN_NO_IDLE_HZ_SKIPPED_TICKS 1
+
+/* /proc/sys/kernel/hz_timer state. */
+int sysctl_hz_timer;
+/* Some stats, printed in /proc/vmi/info. */
+DEFINE_PER_CPU(unsigned long, vmi_idle_no_hz_irqs);...
2014 Dec 07
2
[RFC PATCH v2] cover: armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
Hi,
Optimizes celt_pitch_xcorr for floating point.
Changes from RFCv1:
- Rebased on top of commit
aad281878: Fix celt_pitch_xcorr_c signature.
which got rid of ugly code around CELT_PITCH_XCORR_IMPL
passing of "arch" parameter.
- Unified with --enable-intrinsics used by x86
- Modified algorithm to be more in-line with algorithm in
celt_pitch_xcorr_arm.s
Viswanath Puttagunta
2023 Feb 15
17
[PATCH 00/17] cirrus: Modernize the cirrus driver
Update the cirrus driver to follow current best practices. While the
driver's hardware is obsolete, the cirrus driver is still one of the
go-to modules to learn about writing a DRM driver. So keep it in good
shape.
Patches 1 to 3 simplify blitting and convert it to the DRM's current
helpers.
Patches 4 to 8 replace simple-KMS helpers with DRM's regular atomic
helpers. The former are
2023 Jul 12
8
[PATCH RFC v1 00/52] drm/crtc: Rename struct drm_crtc::dev to drm_dev
...v50/head917d.c | 6 +-
drivers/gpu/drm/nouveau/dispnv50/headc37d.c | 18 +-
drivers/gpu/drm/nouveau/dispnv50/headc57d.c | 10 +-
drivers/gpu/drm/nouveau/nouveau_connector.h | 2 +-
drivers/gpu/drm/nouveau/nouveau_display.c | 2 +-
drivers/gpu/drm/omapdrm/omap_crtc.c | 56 +++----
drivers/gpu/drm/omapdrm/omap_irq.c | 6 +-
drivers/gpu/drm/panel/panel-ilitek-ili9341.c | 4 +-
drivers/gpu/drm/pl111/pl111_display.c | 16 +-
drivers/gpu/drm/qxl/qxl_display.c | 2 +-
drivers/gpu/drm/radeon/atombios_crtc.c | 54 +++---
driver...
2023 Jul 12
8
[PATCH RFC v1 00/52] drm/crtc: Rename struct drm_crtc::dev to drm_dev
...v50/head917d.c | 6 +-
drivers/gpu/drm/nouveau/dispnv50/headc37d.c | 18 +-
drivers/gpu/drm/nouveau/dispnv50/headc57d.c | 10 +-
drivers/gpu/drm/nouveau/nouveau_connector.h | 2 +-
drivers/gpu/drm/nouveau/nouveau_display.c | 2 +-
drivers/gpu/drm/omapdrm/omap_crtc.c | 56 +++----
drivers/gpu/drm/omapdrm/omap_irq.c | 6 +-
drivers/gpu/drm/panel/panel-ilitek-ili9341.c | 4 +-
drivers/gpu/drm/pl111/pl111_display.c | 16 +-
drivers/gpu/drm/qxl/qxl_display.c | 2 +-
drivers/gpu/drm/radeon/atombios_crtc.c | 54 +++---
driver...
2020 Sep 24
30
[RFC PATCH 00/24] Control VQ support in vDPA
...| 23 ++-
drivers/vhost/vhost.h | 4 +-
drivers/virtio/virtio_vdpa.c | 2 +-
include/linux/vdpa.h | 42 ++++-
include/linux/vhost_iotlb.h | 2 +
include/uapi/linux/vhost.h | 19 +-
include/uapi/linux/vhost_types.h | 10 +-
13 files changed, 556 insertions(+), 149 deletions(-)
--
2.20.1
2020 Sep 24
30
[RFC PATCH 00/24] Control VQ support in vDPA
...| 23 ++-
drivers/vhost/vhost.h | 4 +-
drivers/virtio/virtio_vdpa.c | 2 +-
include/linux/vdpa.h | 42 ++++-
include/linux/vhost_iotlb.h | 2 +
include/uapi/linux/vhost.h | 19 +-
include/uapi/linux/vhost_types.h | 10 +-
13 files changed, 556 insertions(+), 149 deletions(-)
--
2.20.1