Displaying 4 results from an estimated 4 matches for "num_words".
Did you mean:
  nr_words
  
2014 Jan 10
1
samba 4.1.3 -- multiple bugs & 1, 297 coredumps -- coredump backtrace + full-backtrace included
...why=0x7f6cb69b8d80 "num_bytes too large: 4294966797")
    at ../lib/util/fault.c:159
#5  0x00007f6cb51ce995 in create_outbuf
(mem_ctx=mem_ctx at entry=0x7f6cb69c6040, 
    req=req at entry=0x7f6cb69c6040, inbuf=0x7f6cb69c5f60 "", 
    outbuf=outbuf at entry=0x7ffff37d3868, num_words=num_words at entry=10 '\n', 
    num_bytes=num_bytes at entry=4294966797) at ../source3/smbd/process.c:1286
#6  0x00007f6cb51cfab0 in reply_outbuf (req=req at entry=0x7f6cb69c6040, 
    num_words=num_words at entry=10 '\n', num_bytes=num_bytes at entry=4294966797)
    at ../sour...
2006 Apr 12
2
Location of match?
Is it possible with Ferret to find the location of the matches in a  
document? For example imagine I have 100 documents and I search with  
the phrase "bob~0.5" and that returns 3 matching documents. How can I  
then find all locations in a specific document where it matched  
"bob~0.5". What I need is something like an array that contains the  
start index and length for each
2015 Jun 02
3
[LLVMdev] BasicAA unable to analyze recursive PHI nodes
.... ] [ %var, ... ]
  %incptr = getelementptr %x, 1
We will basically always return MayAlias for %x and any other value
because aliasPHI recurses on the first value and gives up.
There are, however, many cases where this is too conservative.
Take the following example:
typedef struct {
  unsigned num_words;
  unsigned word_ofs;
  const unsigned *data;
} section_t;
void test(section_t* restrict section, unsigned* restrict dst)
{ 
  while (section->data != NULL) {
    const unsigned *src = section->data;
    for (unsigned i=0; i < section->num_words; ++i) {
      dst[section->word_ofs +...
2018 Jun 07
0
[PATCH v2 1/2] compiler-gcc.h: add gnu_inline to all inline declarations
...rifier.c
index fb2609434df7..400fe11b128d 100644
--- a/drivers/gpu/drm/via/via_verifier.c
+++ b/drivers/gpu/drm/via/via_verifier.c
@@ -238 +238 @@ static hazard_t table3[256];
-static __inline__ int
+static inline int
@@ -253 +253 @@ eat_words(const uint32_t **buf, const uint32_t *buf_end, unsigned num_words)
-static __inline__ drm_local_map_t *via_drm_lookup_agp_map(drm_via_state_t *seq,
+static inline drm_local_map_t *via_drm_lookup_agp_map(drm_via_state_t *seq,
@@ -290 +290 @@ static __inline__ drm_local_map_t *via_drm_lookup_agp_map(drm_via_state_t *seq,
-static __inline__ int finish_current_sequen...