search for: 1000,8

Displaying 20 results from an estimated 21 matches for "1000,8".

Did you mean: 100,8
2002 Dec 10
1
"mystic" apply ?
hi, have anybody a suggestion why this function works only for a vector correct. When i'm using apply(data,2,fuzzy) i have the columns stacked (i.e. dim(x) =1000,4 should after the function 1000,8 instead is 2000,4) - for single vector it's ok. fuzzy <- function (x) { fuz.x <- cbind(x, x) min <- quantile(x, 0.20) max <- quantile(x, 0.80) fuz.x[x >= max, 1] <- 1 fuz.x[x >= max, 2] <- 0 fuz.x[x <= m...
2008 Apr 03
1
Sending audio to a channel
I have a voicemail application that users can listen to messages and leave messages. I am looking for a way to play a beep tone to a user when a new message is received when they are on the phone. Here is what I have come up with: in extensions.conf: [beepvoicemail] exten => 1000,1,answer() exten => 1000,2,NoCDR() exten => 1000,3,wait(2) exten => 1000,4,Set(TIMEOUT(absolute)=5) exten => 1000,5,playback(voicemail/beeps) exten => 1000,7,SendDTMF(9) exten => 1000,8,hangup() exten => 2000,1,Set(TIMEOUT(absolute)=5) exten => 2000,2,NoCDR() exten => 20...
2010 Aug 02
3
FAX Options
Hi, Is FAXing with Asterisk a practical option ? Or is it better just to use a plain fax connected to an FXS and just switch with Asterisk. I specifically wanted to know if there was any experience using just the fax scanner to send faxes and receive them via asterisk and the to e-mail. My idea was to take my old fax connect it to an FXS port and send faxes with the fax machine (using the fax
2018 May 22
2
Plot qualitative y axis
...t; VII 635 433 > VIII 1437 654 > IX 693 333 > X 1343 624 > XI 1221 611 > XII 25 15 > XIII 3 NA > XIV 7 8", > header=TRUE) > barpos<-barplot(t(as.matrix(ppdf[,2:3])),horiz=TRUE, > names.arg=ppdf$N,beside=TRUE,col=c("red","blue")) > legend(1000,8,c("W","M"),fill=c("blue","red")) > lines(ppdf$W,barpos[2,],col="blue") > lines(ppdf$M,barpos[1,],col="red") > > Jim > > > On Mon, May 21, 2018 at 10:44 PM, Pedro p?ramo <percentil101 at gmail.com> > wrote: &...
2019 Jun 14
0
resample of libopusenc-0.2.1 outputs all zeros if define FIXED_POINT
...+++ libopusenc-0.2.1/src/resample.c 2019-06-15 01:32:37 +0800 @@ -82,7 +82,7 @@ static void speex_free(void *ptr) {free( #include <limits.h> #ifndef M_PI -#define M_PI 3.14159265358979323846 +#define M_PI 3.14159265358979323846f #endif #define IMAX(a,b) ((a) > (b) ? (a) : (b)) @@ -1000,7 +1000,8 @@ EXPORT int speex_resampler_process_int(S if (in) { for(j=0;j<ichunk;++j) #ifdef FIXED_POINT - x[j+st->filt_len-1]=WORD2INT(in[j*istride_save]); + /* [-1.0, 1.0] ==> [-32768, 32767] */ + x[j+st->filt_len-1]=WORD2INT(32768 * in...
2018 May 23
0
Plot qualitative y axis
...t; VII 635 433 > VIII 1437 654 > IX 693 333 > X 1343 624 > XI 1221 611 > XII 25 15 > XIII 3 NA > XIV 7 8", > header=TRUE) > barpos<-barplot(t(as.matrix(ppdf[,2:3])),horiz=TRUE, >? names.arg=ppdf$N,beside=TRUE,col=c("red","blue")) > legend(1000,8,c("W","M"),fill=c("blue","red")) > lines(ppdf$W,barpos[2,],col="blue") > lines(ppdf$M,barpos[1,],col="red") > > Jim > > > On Mon, May 21, 2018 at 10:44 PM, Pedro p?ramo <percentil101 at gmail.com> > wrote: &...
2018 May 23
0
Plot qualitative y axis
...4 >>> XI 1221 611 >>> XII 25 15 >>> XIII 3 NA >>> XIV 7 8", >>> header=TRUE) >>> barpos<-barplot(t(as.matrix(ppdf[,2:3])),horiz=TRUE, >>> names.arg=ppdf$N,beside=TRUE,col=c("red","blue")) >>> legend(1000,8,c("W","M"),fill=c("blue","red")) >>> lines(ppdf$W,barpos[2,],col="blue") >>> lines(ppdf$M,barpos[1,],col="red") >>> >>> Jim >>> >>> >>> On Mon, May 21, 2018 at 10:44 PM, Pedr...
2016 Mar 21
0
[PATCH v2 13/18] mm/compaction: support non-lru movable page migration
..., newpage, page, mode); + if (mapping) { + rc = mapping->a_ops->migratepage(mapping, newpage, + page, mode); + WARN_ON_ONCE(rc == MIGRATEPAGE_SUCCESS && + PageIsolated(page)); + } + } /* * When successful, old pagecache page->mapping must be cleared before @@ -1000,8 +1100,12 @@ static ICE_noinline int unmap_and_move(new_page_t get_new_page, num_poisoned_pages_inc(); } } else { - if (rc != -EAGAIN) - putback_lru_page(page); + if (rc != -EAGAIN) { + if (likely(!PageIsolated(page))) + putback_lru_page(page); + else + putback_movable_page...
2016 Mar 30
0
[PATCH v3 02/16] mm/compaction: support non-lru movable page migration
...Anon(page)) page->mapping = NULL; } +out: return rc; } @@ -960,6 +1078,8 @@ static ICE_noinline int unmap_and_move(new_page_t get_new_page, put_new_page(newpage, private); else put_page(newpage); + if (PageMovable(page)) + __ClearPageMovable(page); goto out; } @@ -1000,8 +1120,26 @@ static ICE_noinline int unmap_and_move(new_page_t get_new_page, num_poisoned_pages_inc(); } } else { - if (rc != -EAGAIN) - putback_lru_page(page); + if (rc != -EAGAIN) { + /* + * subsystem couldn't remove PG_movable since page is + * isolated so PageMovable...
2016 Apr 01
2
[PATCH v3 02/16] mm/compaction: support non-lru movable page migration
...; > } > > @@ -960,6 +1078,8 @@ static ICE_noinline int unmap_and_move(new_page_t get_new_page, > put_new_page(newpage, private); > else > put_page(newpage); > + if (PageMovable(page)) > + __ClearPageMovable(page); > goto out; > } > > @@ -1000,8 +1120,26 @@ static ICE_noinline int unmap_and_move(new_page_t get_new_page, > num_poisoned_pages_inc(); > } > } else { > - if (rc != -EAGAIN) > - putback_lru_page(page); > + if (rc != -EAGAIN) { > + /* > + * subsystem couldn't remove PG_movable si...
2016 Apr 01
2
[PATCH v3 02/16] mm/compaction: support non-lru movable page migration
...; > } > > @@ -960,6 +1078,8 @@ static ICE_noinline int unmap_and_move(new_page_t get_new_page, > put_new_page(newpage, private); > else > put_page(newpage); > + if (PageMovable(page)) > + __ClearPageMovable(page); > goto out; > } > > @@ -1000,8 +1120,26 @@ static ICE_noinline int unmap_and_move(new_page_t get_new_page, > num_poisoned_pages_inc(); > } > } else { > - if (rc != -EAGAIN) > - putback_lru_page(page); > + if (rc != -EAGAIN) { > + /* > + * subsystem couldn't remove PG_movable si...
2007 May 17
1
[PATCH] ocfs: use list_for_each_entry where benefical
...ECOVERY); if (ret < 0) { @@ -983,7 +973,6 @@ int dlm_reco_data_done_handler(struct o2 { struct dlm_ctxt *dlm = data; struct dlm_reco_data_done *done = (struct dlm_reco_data_done *)msg->buf; - struct list_head *iter; struct dlm_reco_node_data *ndata = NULL; int ret = -EINVAL; @@ -1000,8 +989,7 @@ int dlm_reco_data_done_handler(struct o2 dlm->reco.dead_node, done->node_idx, dlm->node_num); spin_lock(&dlm_reco_state_lock); - list_for_each(iter, &dlm->reco.node_data) { - ndata = list_entry (iter, struct dlm_reco_node_data, list); + list_for_each_entry(n...
2016 Apr 04
0
[PATCH v3 02/16] mm/compaction: support non-lru movable page migration
...8 @@ static ICE_noinline int unmap_and_move(new_page_t get_new_page, > > put_new_page(newpage, private); > > else > > put_page(newpage); > >+ if (PageMovable(page)) > >+ __ClearPageMovable(page); > > goto out; > > } > > > >@@ -1000,8 +1120,26 @@ static ICE_noinline int unmap_and_move(new_page_t get_new_page, > > num_poisoned_pages_inc(); > > } > > } else { > >- if (rc != -EAGAIN) > >- putback_lru_page(page); > >+ if (rc != -EAGAIN) { > >+ /* > >+ * subsystem c...
2017 Jan 16
4
[RFC 0/2] Propose a new pointer trait.
Hi, I'm part of an engineering team doing research on persistent memory support and we have stumbled upon an interesting problem. The issue is, we would like to be able to use the standard library containers in a persistent memory context (think NVDIMM-N). What I mean is that you allocate a container from said memory, use it like you normally would. After the application terminates, expectedly
2012 Oct 15
7
[PATCHv7 0/4] virtio_console: Add rproc_serial driver
From: Sjur Br?ndeland <sjur.brandeland at stericsson.com> This patch-set introduces a new virtio type "rproc_serial" for communicating with remote processors over shared memory. The driver depends on the the remoteproc framework. As preparation for introducing "rproc_serial" I've done a refactoring of the transmit buffer handling. This patch-set is a rework of the
2012 Oct 15
7
[PATCHv7 0/4] virtio_console: Add rproc_serial driver
From: Sjur Br?ndeland <sjur.brandeland at stericsson.com> This patch-set introduces a new virtio type "rproc_serial" for communicating with remote processors over shared memory. The driver depends on the the remoteproc framework. As preparation for introducing "rproc_serial" I've done a refactoring of the transmit buffer handling. This patch-set is a rework of the
2020 Apr 29
4
[PATCH v1 0/3] mm/memory_hotplug: Make virtio-mem play nicely with kexec-tools
This series is based on [1]: [PATCH v2 00/10] virtio-mem: paravirtualized memory That will hopefull get picked up soon, rebased to -next. The following patches were reverted from -next [2]: [PATCH 0/3] kexec/memory_hotplug: Prevent removal and accidental use As discussed in that thread, they should be reverted from -next already. In theory, if people agree, we could take the first two patches
2016 Mar 30
33
[PATCH v3 00/16] Support non-lru page migration
Recently, I got many reports about perfermance degradation in embedded system(Android mobile phone, webOS TV and so on) and failed to fork easily. The problem was fragmentation caused by zram and GPU driver pages. Their pages cannot be migrated so compaction cannot work well, either so reclaimer ends up shrinking all of working set pages. It made system very slow and even to fail to fork easily.
2016 Mar 30
33
[PATCH v3 00/16] Support non-lru page migration
Recently, I got many reports about perfermance degradation in embedded system(Android mobile phone, webOS TV and so on) and failed to fork easily. The problem was fragmentation caused by zram and GPU driver pages. Their pages cannot be migrated so compaction cannot work well, either so reclaimer ends up shrinking all of working set pages. It made system very slow and even to fail to fork easily.
2016 Mar 21
22
[PATCH v2 00/18] Support non-lru page migration
Recently, I got many reports about perfermance degradation in embedded system(Android mobile phone, webOS TV and so on) and failed to fork easily. The problem was fragmentation caused by zram and GPU driver pages. Their pages cannot be migrated so compaction cannot work well, either so reclaimer ends up shrinking all of working set pages. It made system very slow and even to fail to fork easily.