Results 1-25 of about 105,663 results found for 'search' in 0.66 seconds
 1 2345678910...

huffman.c
    case 2:
        return huffman_2step_quad(cb, ld, sp);
    case 3: /* binary search for data quadruples */
        return huffman_binary_quad_sign(cb, ld, sp);
    case 4: /* 2-step method for data quadruples */
Language: C
License: GPL
(C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com
LOC: 405
SourceForge : Freeware Advanced Audio Coder (project search) : .../faac/faad2/libfaad/huffman.c

osip_message_parse.c
  dest->sip_method = NULL;
  *headers = buf;
  statuscode = strchr (buf, ' ');       /* search for first SPACE */
  if (statuscode == NULL)
    return -1;
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 898
Savannah GNU : The oSIP library (project search) : .../osip/osip/src/osipparser2/osip_message_parse.c

osip_from.c
          const char *first;
          const char *second=NULL;
          /* search for quotes */
          first = __osip_quote_find (hvalue);
          if (first == NULL)
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 469
Savannah GNU : The oSIP library (project search) : .../osip/osip/src/osipparser2/osip_from.c

osip_uri.c
   sip:juser@ExAmPlE.CoM;Transport=UDP
*/
/* this method search for the separator and   */
/* return it only if it is located before the */
/* second separator. */
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 816
Savannah GNU : The oSIP library (project search) : .../osip/osip/src/osipparser2/osip_uri.c

telephonyevents.c
int rtp_session_telephone_events_supported(RtpSession *session)
{
     /* search for a telephony event payload in the current profile */
     session->snd.telephone_events_pt=rtp_profile_get_payload_number_from_mime(session->snd.profile,"telephone-event");
     session->rcv.telephone_events_pt=rtp_profile_get_payload_number_from_mime(session->rcv.profile,"telephone-event");
Language: C
License: LGPL
(C) 2001 Simon MORLAT simon.morlat@linphone.org
LOC: 250
Savannah NonGNU : LinPhone - Telephony on Linux (project search) : .../linphone/linphone/oRTP/src/telephonyevents.c

image.c
#define DefaultDepthOfScreen(screen) (one_mac_display_info.n_planes)
#endif /* MAC_OS */
/* Search path for bitmap files.  */
Lisp_Object Vx_bitmap_file_path;
static void x_disable_image P_ ((struct frame *, struct image *));
Language: C
License: GPL
(C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
LOC: 6632
Savannah GNU : emacs (project search) : .../emacs/emacs/emacs/src/image.c

osip_parser_cfg.c
 * The 'problem' is that the header name are too much alike for the osip_hash() function
 * which gives a poor deviation.
 * Anyway, this mechanism improves the search time (from binary seach (log(n)) to 1).
 */
#ifndef HASH_TABLE_SIZE
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 177
Savannah GNU : The oSIP library (project search) : .../osip/osip/src/osipparser2/osip_parser_cfg.c

osip.c
    {
#ifdef HAVE_DICT_DICT_H
      /* search in hastable! */
      osip_generic_param_t *b_request;
      osip_via_t *topvia_request;
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 1859
Savannah GNU : The oSIP library (project search) : .../osip/osip/src/osip2/osip.c

osip.h
  int osip_transaction_free2 (osip_transaction_t * transaction);
/**
 * Search in a SIP response the destination where the message
 * should be sent.
 * @param response the message to work on.
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 402
Savannah GNU : The oSIP library (project search) : .../osip/osip/include/osip2/osip.h

osip_header.c
#endif
/* Get a header in a SIP message.                       */
/* INPUT : int pos | position where we start the search */
/* OUTPUT: osip_message_t *sip | structure to look for header.   */
/* return the current position of the header found      */
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 229
Savannah GNU : The oSIP library (project search) : .../osip/osip/src/osipparser2/osip_header.c

payloadtype.c
 * be useful for people using RTP streams described from SDP.
 * @param fmtp the fmtp line (format parameters)
 * @param param_name the parameter to search for
 * @param result the value given for the parameter (if found)
 * @param result_len the size allocated to hold the result string
Language: C
License: LGPL
(C) 2001 Simon MORLAT simon.morlat@linphone.org
LOC: 253
Savannah NonGNU : LinPhone - Telephony on Linux (project search) : .../linphone/linphone/oRTP/src/payloadtype.c

md5sum.c
  *file_name = s;
  /* Find end of filename. The BSD 'md5' and 'sha1' commands do not escape
     filenames, so search backwards for the last ')'. */
  i = s_len - 1;
  while (i && s[i] != ')')
Language: C
License: GPL
(C) 1995-2007 Free Software Foundation, Inc.
LOC: 554
Savannah GNU : GNU Core Utilities (project search) : .../coreutils/coreutils/coreutils/src/md5sum.c

parse822.c
  - Are comments allowed in domain-literals?
  - Need a way to mark the *end* of a group. Maybe add a field to _mu_address,
    int group_end;, so if you care, you can search for the end of
    a group with address_is_group_end();
    --> Groups no longer show up in the mu_address_t list.
Language: C
License: LGPL
(C) 1999, 2000, 2001, 2005, 2007 Free Software Foundation, Inc.
LOC: 1344
Savannah GNU : GNU Mail Utilities (project search) : .../mailutils/mailutils/mailutils/mailbox/parse822.c

delaunay.c
 *
 * Author:         Pavel Sakov
 *                 CSIRO Marine Research
 *
 * Purpose:        Delaunay triangulation - a wrapper to triangulate()
Language: C
LOC: 510
SourceForge : PLplot (project search) : .../plplot/plplot/lib/nn/delaunay.c

osip_call_id.c
  callid->number = NULL;
  callid->host = NULL;
  host = strchr (hvalue, '@');  /* SEARCH FOR '@' */
  end = hvalue + strlen (hvalue);
  if (host == NULL)
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 166
Savannah GNU : The oSIP library (project search) : .../osip/osip/src/osipparser2/osip_call_id.c

osip_via.h
 * Find a header parameter in a Via element.
 * @param header The element to work on.
 * @param name The token name to search.
 * @param dest A pointer on the element found.
 */
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 54
Savannah GNU : The oSIP library (project search) : .../osip/include/osipparser2/headers/osip_via.h

osip_authorization.c
  const char *space;
  const char *next = NULL;
  space = strchr (hvalue, ' '); /* SEARCH FOR SPACE */
  if (space == NULL)
    return -1;
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 534
Savannah GNU : The oSIP library (project search) : .../osip/osip/src/osipparser2/osip_authorization.c

ethernetif.c
 * This file is a skeleton for developing Ethernet network interface
 * drivers for lwIP. Add code to the low_level functions and do a
 * search-and-replace for the word "ethernetif" to replace it with
 * something that better describes your network interface.
 */
Language: C
(c) 2001-2004 Swedish Institute of Computer Science.
LOC: 132
Savannah NonGNU : lwIP - A Lightweight TCP/IP stack (project search) : .../lwip/lwip/src/netif/ethernetif.c

eXutils.c
         else
         {
          /* search for maddr parameter */
          osip_uri_param_t *maddr_param = NULL;
          osip_uri_uparam_get_byname (sip->req_uri, "maddr", &maddr_param);
Language: C
License: GPL
(C) 2002,2003,2004,2005,2006,2007 Aymeric MOIZARD - jack@atosc.org
LOC: 882
Savannah NonGNU : The eXtended osip library (project search) : .../exosip/exosip/exosip/src/eXutils.c

delaunay.h
 *
 * Author:         Pavel Sakov
 *                 CSIRO Marine Research
 *
 * Purpose:        Header for delaunay triangulation wrapper
Language: C
LOC: 39
SourceForge : PLplot (project search) : .../plplot/plplot/lib/nn/delaunay.h

ict_fsm.c
            {
           int port = 5060;
           /* search for maddr parameter */
           osip_uri_param_t *maddr_param = NULL;
           port = 5060;
Language: C
License: LGPL
(C) 2001,2002,2003,2004,2005,2006,2007 Aymeric MOIZARD jack@atosc.org
LOC: 393
Savannah GNU : The oSIP library (project search) : .../osip/osip/src/osip2/ict_fsm.c

jrequest.c
                              firewall_port, sizeof(firewall_port));
    }
  /* search for topmost Via which indicate the transport protocol */
  via = (osip_via_t *) osip_list_get (&request->vias, 0);
  if (via == NULL || via->protocol == NULL)
Language: C
License: GPL
(C) 2002,2003,2004,2005,2006,2007 Aymeric MOIZARD - jack@atosc.org
LOC: 764
Savannah NonGNU : The eXtended osip library (project search) : .../exosip/exosip/exosip/src/jrequest.c

ps_syntax.c
    }
}
/* binary search huffman decoding */
static INLINE int8_t ps_huff_dec(bitfile *ld, ps_huff_tab t_huff)
{
Language: C
License: GPL
(C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com
LOC: 441
SourceForge : Freeware Advanced Audio Coder (project search) : .../faac/faad2/libfaad/ps_syntax.c

cp.c
              printf (verbose_fmt_string, src, dir);
          }
           /* We need search and write permissions to the new directory
              for writing the directory's contents. Check if these
           permissions are there.  */
Language: C
License: GPL
LOC: 797
Savannah GNU : GNU Core Utilities (project search) : .../coreutils/coreutils/coreutils/src/cp.c

udp.c
          return;
     }
     /* search for existing dialog: match branch & to tag */
     for (jc = eXosip.j_calls; jc != NULL; jc = jc->next)
     {
Language: C
License: GPL
(C) 2002,2003,2004,2005,2006,2007 Aymeric MOIZARD - jack@atosc.org
LOC: 1870
Savannah NonGNU : The eXtended osip library (project search) : .../exosip/exosip/exosip/src/udp.c

 1 2345678910...

Project Matches
 1 2345...

Yahoo__Search - Yahoo::Search, Yahoo::Search::Request,...

Imager::Search - Imager::Search, Imager::Search::Match,...

Perldoc__Search - Perldoc::Search

Search__Equidistance - Search::Equidistance

WWW::Search::Monster - WWW::Search::Monster








About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us