Searched refs:temp (Results 1 - 25 of 1106) sorted by relevance

1234567891011>>

/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dxmalloc.c58 PTR_T temp; local
60 temp = malloc (bytes);
61 if (temp == 0)
63 return (temp);
71 PTR_T temp; local
73 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
75 if (temp == 0)
77 return (temp);
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/examples/
H A Drltest.c52 char *temp, *prompt; local
55 temp = (char *)NULL;
61 temp = readline (prompt);
64 if (!temp)
68 if (*temp)
70 fprintf (stderr, "%s\r\n", temp);
71 add_history (temp);
75 if (strcmp (temp, "quit") == 0)
78 if (strcmp (temp, "list") == 0)
90 free (temp);
[all...]
/macosx-10.10.1/swig-12/Lib/guile/
H A Dstd_common.i21 char* temp;
22 temp = SWIG_scm2str(x);
23 std::string s(temp);
24 if (temp) SWIG_free(temp);
H A Dpointer-in-out.i52 %typemap(in, doc="$NAME is of type <" #SCM_TYPE ">") PTRTYPE *INPUT(PTRTYPE temp)
54 if (SWIG_ConvertPtr($input, (void **) &temp, $*descriptor, 0)) {
57 $1 = &temp;
60 %typemap(in, doc="$NAME is of type <" #SCM_TYPE "> and is consumed by the function") PTRTYPE *INPUT_CONSUMED(PTRTYPE temp)
62 if (SWIG_ConvertPtr($input, (void **) &temp, $*descriptor, 0)) {
66 $1 = &temp;
69 %typemap(in, doc="$NAME is of type <" #SCM_TYPE "> and is consumed by the function") PTRTYPE *INPUT_DESTROYED(PTRTYPE temp)
71 if (SWIG_ConvertPtr($input, (void **) &temp, $*descriptor, 0)) {
75 $1 = &temp;
78 %typemap(in, numinputs=0) PTRTYPE *OUTPUT(PTRTYPE temp),
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Decho.c47 char *temp, *s; local
55 for (; list && (temp = list->word->word) && *temp == '-'; list = list->next)
60 temp++;
62 for (i = 0; temp[i]; i++)
64 if (strchr (VALID_ECHO_OPTIONS, temp[i]) == 0)
69 if (*temp == 0 || temp[i])
74 while (i = *temp++)
102 temp
[all...]
H A Dshift.c33 WORD_LIST *temp; local
61 temp = rest_of_args;
62 dollar_vars[9] = savestring (temp->word->word);
64 temp->next = (WORD_LIST *)NULL;
65 dispose_words (temp);
/macosx-10.10.1/ruby-106/ruby/tool/
H A Difchange21 temp="$2"
22 if [ "$temp" = - ]; then
23 temp="tmpdata$$.tmp~"
24 cat > "$temp" || exit $?
25 trap 'rm -f "$temp"' 0
28 if cmp "$target" "$temp" >/dev/null 2>&1; then
30 rm -f "$temp"
33 mv -f "$temp" "$target"
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/malloc/
H A Dxmalloc.c66 PTR_T temp; local
68 temp = malloc (bytes);
69 if (temp == 0)
71 return (temp);
79 PTR_T temp; local
81 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
83 if (temp == 0)
85 return (temp);
/macosx-10.10.1/ncurses-44/ncurses/ncurses/widechar/
H A Dcharable.c54 char temp[MB_LEN_MAX]; local
55 result = wctomb(temp, ch);
56 if (strlen(temp) == 1)
57 result = UChar(temp[0]);
71 char temp[2]; local
72 temp[0] = ch;
73 temp[1] = '\0';
74 if (mbtowc(&convert, temp, 1) >= 0)
/macosx-10.10.1/OpenSSL098-52/src/crypto/md2/
H A Dmd2_one.c78 char temp[1024];
83 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
84 ebcdic2ascii(temp, d, chunk);
85 MD2_Update(&c,temp,chunk);
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-config/
H A DMakefile41 > temp.sed
43 >> temp.sed
45 >> temp.sed
47 >> temp.sed
49 >> temp.sed
51 >> temp.sed
53 >> temp.sed
55 >> temp.sed
57 >> temp.sed
58 $(Verb) $(SED) -f temp
[all...]
/macosx-10.10.1/swig-12/Lib/tcl/
H A Dtypemaps.i64 %typemap(in) double *INPUT(double temp), double &INPUT(double temp)
66 if (Tcl_GetDoubleFromObj(interp,$input,&temp) == TCL_ERROR) {
69 $1 = &temp;
72 %typemap(in) float *INPUT(double dvalue, float temp), float &INPUT(double dvalue, float temp)
77 temp = (float) dvalue;
78 $1 = &temp;
81 %typemap(in) int *INPUT(int temp), int &INPUT(int temp)
[all...]
/macosx-10.10.1/swig-12/Lib/perl5/
H A Dtypemaps.i62 %typemap(in) type *INPUT(type temp), type &INPUT(type temp) {
63 temp = (type) converter($input);
64 $1 = &temp;
81 %typemap(in) bool *INPUT(bool temp), bool &INPUT(bool temp) {
82 temp = SvIV($input) ? true : false;
83 $1 = &temp;
88 %typemap(in) long long *INPUT($*1_ltype temp), long long &INPUT($*1_ltype temp) {
[all...]
/macosx-10.10.1/cups-408/cups/scheduler/
H A Dbanners.c140 cupsd_banner_t *temp; /* New banner data */ local
159 if ((temp = calloc(1, sizeof(cupsd_banner_t))) == NULL)
171 if ((temp->name = strdup(name)) == NULL)
176 free(temp);
180 temp->filetype = filetype;
182 cupsArrayAdd(Banners, temp);
206 cupsd_banner_t *temp; /* Current banner */ local
209 for (temp = (cupsd_banner_t *)cupsArrayFirst(Banners);
210 temp;
211 temp
[all...]
H A Dnetwork.c92 cupsd_netif_t *temp; /* New interface */ local
179 if ((temp = calloc(1, sizeof(cupsd_netif_t) + hostlen)) == NULL)
189 strlcpy(temp->name, addr->ifa_name, sizeof(temp->name));
190 temp->hostlen = hostlen;
191 memcpy(temp->hostname, hostname, hostlen + 1);
199 memcpy(&(temp->address), addr->ifa_addr, sizeof(struct sockaddr_in));
200 memcpy(&(temp->mask), addr->ifa_netmask, sizeof(struct sockaddr_in));
203 memcpy(&(temp->broadcast), addr->ifa_dstaddr,
213 memcpy(&(temp
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dgetenv.c38 char *temp = getenv(variable);
40 if(temp != NULL)
41 ExpandEnvironmentStringsA(temp, env, sizeof(env));
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Array/
H A Dregress-108440.js51 var temp = ''; variable
60 temp = (a[a.length]=a);
68 temp = prop;
69 temp = (a[a.length] = self[prop]);
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dxmalloc.c85 PTR_T temp; local
87 temp = malloc (bytes);
89 if (temp == 0)
99 return (temp);
107 PTR_T temp; local
109 temp = pointer ? realloc (pointer, bytes) : malloc (bytes);
111 if (temp == 0)
121 return (temp);
143 PTR_T temp; local
145 temp
167 PTR_T temp; local
[all...]
/macosx-10.10.1/cups-408/cups/cups/
H A Dgetifaddrs.c44 struct ifaddrs *temp; /* Pointer to current interface */ local
121 if ((temp = calloc(1, sizeof(struct ifaddrs))) == NULL)
136 temp->ifa_next = *addrs;
137 *addrs = temp;
138 temp->ifa_name = strdup(ifp->ifr_name);
139 temp->ifa_flags = request.ifr_flags;
140 if ((temp->ifa_addr = calloc(1, sockaddr_len(&(ifp->ifr_addr)))) != NULL)
141 memcpy(temp->ifa_addr, &(ifp->ifr_addr), sockaddr_len(&(ifp->ifr_addr)));
153 if ((temp->ifa_netmask = calloc(1, sizeof(request.ifr_netmask))) != NULL)
154 memcpy(temp
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dterminfo.c44 char *temp; local
47 temp = tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
49 outstring = ((char *) (xmalloc ((strlen (temp)) + 1)));
50 strcpy (outstring, temp);
/macosx-10.10.1/xnu-2782.1.97/libkern/kxld/
H A DWKdmDecompress.c36 register WK_word temp = input_next[0]; local
37 DEBUG_PRINT_2("Unpacked tags word: %.8x\n", temp);
38 output_next[0] = temp & packing_mask;
39 output_next[1] = (temp >> 2) & packing_mask;
40 output_next[2] = (temp >> 4) & packing_mask;
41 output_next[3] = (temp >> 6) & packing_mask;
72 register WK_word temp = input_next[0]; local
73 DEBUG_PRINT_2("Unpacked dictionary indices word: %.8x\n", temp);
74 output_next[0] = temp & packing_mask;
75 output_next[1] = (temp >>
102 register WK_word temp = input_next[0]; local
248 WK_word temp = *dict_location; local
[all...]
/macosx-10.10.1/swig-12/Lib/ocaml/
H A Dstd_complex.i32 %typemap(in) const complex<T>& (std::complex<T> temp) {
34 temp = std::complex<T>(PyComplex_RealAsDouble($input),
36 $1 = &temp;
38 temp = std::complex<T>(PyFloat_AsDouble($input), 0);
39 $1 = &temp;
41 temp = std::complex<T>(PyInt_AsLong($input), 0);
42 $1 = &temp;
/macosx-10.10.1/OpenSSL098-52/src/crypto/md4/
H A Dmd4_one.c80 char temp[1024];
85 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
86 ebcdic2ascii(temp, d, chunk);
87 MD4_Update(&c,temp,chunk);
/macosx-10.10.1/OpenSSL098-52/src/crypto/md5/
H A Dmd5_one.c80 char temp[1024];
85 chunk = (n > sizeof(temp)) ? sizeof(temp) : n;
86 ebcdic2ascii(temp, d, chunk);
87 MD5_Update(&c,temp,chunk);
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/utrie2perf/
H A Dutrie2perf.bat14 %PERF% CheckFCD -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
15 rem %PERF% CheckFCDAlwaysGet -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
16 rem %PERF% CheckFCDUTF8 -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
17 %PERF% ToNFC -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
18 %PERF% GetBiDiClass -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000

Completed in 139 milliseconds

1234567891011>>