Searched refs:dest (Results 101 - 125 of 1203) sorted by relevance

1234567891011>>

/macosx-10.10/postfix-255/postfix/src/global/
H A Dscache_single.c80 SCACHE_SINGLE_DEST dest; /* one cached binding */ member in struct:__anon11782
87 #define SCACHE_SINGLE_DEST_BUSY(sp) (VSTRING_LEN(sp->dest.dest_label) > 0)
178 msg_info("%s: %s -> %s", myname, STR(sp->dest.dest_label),
179 STR(sp->dest.endp_label));
182 VSTRING_RESET(sp->dest.dest_label);
183 VSTRING_TERMINATE(sp->dest.dest_label);
184 VSTRING_RESET(sp->dest.dest_prop);
185 VSTRING_TERMINATE(sp->dest.dest_prop);
186 VSTRING_RESET(sp->dest.endp_label);
187 VSTRING_TERMINATE(sp->dest
[all...]
H A Dscache_multi.c291 static void scache_multi_drop_dest(SCACHE_MULTI_DEST *dest, int direction) argument
298 myname, dest->dest_prop, dest->endp_label);
303 event_cancel_timer(scache_multi_expire_dest, (char *) dest);
310 ring_detach(dest->ring);
311 head = dest->head;
318 myfree(dest->dest_prop);
319 myfree(dest->endp_label);
321 myfree((char *) dest);
328 SCACHE_MULTI_DEST *dest local
338 SCACHE_MULTI_DEST *dest; local
362 SCACHE_MULTI_DEST *dest; local
421 SCACHE_MULTI_DEST *dest; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djinclude.h62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dpunycode.h46 * @param dest Output Punycode array.
47 * @param destCapacity Size of dest.
68 UChar *dest, int32_t destCapacity,
79 * @param dest Output Unicode string buffer.
80 * @param destCapacity Size of dest in number of UChars,
85 * the corresponding character in dest.
97 * @return Number of UChars written to dest.
103 UChar *dest, int32_t destCapacity,
H A Dunorm.cpp99 UChar *dest, int32_t destCapacity,
106 src, srcLength, dest, destCapacity, pErrorCode);
109 src, srcLength, dest, destCapacity, pErrorCode);
118 UChar *dest, int32_t destCapacity,
125 if(destCapacity<0 || (dest==NULL && destCapacity>0) || src==NULL) {
134 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
163 UnicodeString destString(dest, 0, destCapacity);
165 n2->normalize(buffer, destString, *pErrorCode).extract(dest, destCapacity, *pErrorCode);
172 return buffer.extract(dest, destCapacity, *pErrorCode);
178 UChar *dest, int32_
97 unorm_normalize(const UChar *src, int32_t srcLength, UNormalizationMode mode, int32_t options, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
117 _iterate(UCharIterator *src, UBool forward, UChar *dest, int32_t destCapacity, const Normalizer2 *n2, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
177 unorm_iterate(UCharIterator *src, UBool forward, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
197 unorm_previous(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
210 unorm_next(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
225 _concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, const Normalizer2 *n2, UErrorCode *pErrorCode) argument
261 unorm_concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Didna.h103 * @param dest Destination string object
109 * @return dest
113 labelToASCII(const UnicodeString &label, UnicodeString &dest,
125 * @param dest Destination string object
131 * @return dest
135 labelToUnicode(const UnicodeString &label, UnicodeString &dest,
149 * @param dest Destination string object
155 * @return dest
159 nameToASCII(const UnicodeString &name, UnicodeString &dest,
171 * @param dest Destinatio
[all...]
/macosx-10.10/Libc-1044.1.2/secure/
H A Dsnprintf_chk.c31 __snprintf_chk (char *dest, size_t len, int flags, size_t dstlen, argument
42 done = vsnprintf (dest, len, format, arg);
/macosx-10.10/cups-408/cups/cups/
H A Dadminutil.h54 extern int cupsAdminExportSamba(const char *dest, const char *ppd,
59 extern char *cupsAdminCreateWindowsPPD(http_t *http, const char *dest,
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgimagedestination.py36 dest = CGImageDestinationCreateWithData(data, v[0], 1, None)
37 self.assertIsInstance(dest, CGImageDestinationRef)
42 dest = CGImageDestinationCreateWithURL(url, "public.tiff", 2, None)
43 self.assertIsInstance(dest, CGImageDestinationRef)
45 CGImageDestinationSetProperties(dest, {u'key': u'value'})
52 CGImageDestinationAddImage(dest, img, None)
59 CGImageDestinationAddImageFromSource(dest, isrc, 0, None)
62 v = CGImageDestinationFinalize(dest)
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-asprintf.c30 # define VA_COPY(dest, src) va_copy(dest, src)
33 # define VA_COPY(dest, src) __va_copy(dest, src)
35 # define VA_COPY(dest, src) (dest) = (src)
/macosx-10.10/libclosure-65/objectTests/
H A Dassigngc.m17 id objc_assign_global(id val __unused, id *dest __unused) {
22 id objc_assign_ivar(id val __unused, id dest __unused, ptrdiff_t offset __unused) {
27 id objc_assign_strongCast(id val __unused, id *dest __unused) {
H A Dassigngcglobal.m18 id objc_assign_global(id val __unused, id *dest __unused) {
23 id objc_assign_ivar(id val __unused, id dest __unused, ptrdiff_t offset __unused) {
28 id objc_assign_strongCast(id val __unused, id *dest __unused) {
/macosx-10.10/rsync-45/rsync/zlib/
H A Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
23 Bytef *dest;
38 stream.next_out = dest;
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
63 Bytef *dest;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/blt/
H A Dwinop2.rb20 dest = TkPhotoImage.new
21 Tk::BLT::Winop.image_rotate(src, dest, r)
23 l_img = TkLabel.new(:image=>dest)
/macosx-10.10/sudo-73/src/zlib/
H A Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
23 Bytef *dest;
38 stream.next_out = dest;
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
63 Bytef *dest;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/macosx-10.10/tcl-105/tcl_ext/sdx/sdx/lib/app-sdx/
H A Dsync.tcl8 proc rsync {arr src dest} {
9 #tclLog "rsync $src $dest"
15 vfs::auto $dest
22 #tclLog "copying file $src to $dest"
23 return [rcopy opts $src $dest]
25 if {![file isdirectory $dest]} {
26 #tclLog "copying non-file $src to $dest"
27 return [rcopy opts $src $dest]
40 set target [file join $dest $tail]
80 eval lappend contents [glob -nocomplain -dir $dest *]
[all...]
/macosx-10.10/xnu-2782.1.97/libkern/zlib/
H A Dcompress.c53 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
54 Bytef *dest;
69 stream.next_out = dest;
93 int ZEXPORT compress (dest, destLen, source, sourceLen)
94 Bytef *dest;
99 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/macosx-10.10/zlib-55/zlib/
H A Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
23 Bytef *dest;
38 stream.next_out = dest;
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
63 Bytef *dest;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
/macosx-10.10/Security-57031.1.35/Security/include/security_asn1/
H A DSecAsn1Coder.c90 * The dest pointer is a template-specific struct allocated by the caller
98 void *dest)
100 if((coder == NULL) || (src == NULL) || (templ == NULL) || (dest == NULL)) {
103 SECStatus prtn = SEC_ASN1Decode(coder->mPool, dest, templ, (const char *)src, len);
119 void *dest)
121 return SecAsn1Decode(coder, src->Data, src->Length, templ, dest);
125 * DER encode. The encoded data (in dest.Data) is allocated in this
134 SecAsn1Item *dest)
136 if((coder == NULL) || (src == NULL) || (templ == NULL) || (dest == NULL)) {
139 dest
93 SecAsn1Decode( SecAsn1CoderRef coder, const void *src, size_t len, const SecAsn1Template *templ, void *dest) argument
115 SecAsn1DecodeData( SecAsn1CoderRef coder, const SecAsn1Item *src, const SecAsn1Template *templ, void *dest) argument
130 SecAsn1EncodeItem( SecAsn1CoderRef coder, const void *src, const SecAsn1Template *templ, SecAsn1Item *dest) argument
190 SecAsn1AllocCopy( SecAsn1CoderRef coder, const void *src, size_t len, SecAsn1Item *dest) argument
207 SecAsn1AllocCopyItem( SecAsn1CoderRef coder, const SecAsn1Item *src, SecAsn1Item *dest) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/Security/
H A DSecAsn1Coder.c90 * The dest pointer is a template-specific struct allocated by the caller
98 void *dest)
100 if((coder == NULL) || (src == NULL) || (templ == NULL) || (dest == NULL)) {
103 SECStatus prtn = SEC_ASN1Decode(coder->mPool, dest, templ, (const char *)src, len);
119 void *dest)
121 return SecAsn1Decode(coder, src->Data, src->Length, templ, dest);
125 * DER encode. The encoded data (in dest.Data) is allocated in this
134 SecAsn1Item *dest)
136 if((coder == NULL) || (src == NULL) || (templ == NULL) || (dest == NULL)) {
139 dest
93 SecAsn1Decode( SecAsn1CoderRef coder, const void *src, size_t len, const SecAsn1Template *templ, void *dest) argument
115 SecAsn1DecodeData( SecAsn1CoderRef coder, const SecAsn1Item *src, const SecAsn1Template *templ, void *dest) argument
130 SecAsn1EncodeItem( SecAsn1CoderRef coder, const void *src, const SecAsn1Template *templ, SecAsn1Item *dest) argument
190 SecAsn1AllocCopy( SecAsn1CoderRef coder, const void *src, size_t len, SecAsn1Item *dest) argument
207 SecAsn1AllocCopyItem( SecAsn1CoderRef coder, const SecAsn1Item *src, SecAsn1Item *dest) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/lib/
H A DSecAsn1Coder.c90 * The dest pointer is a template-specific struct allocated by the caller
98 void *dest)
100 if((coder == NULL) || (src == NULL) || (templ == NULL) || (dest == NULL)) {
103 SECStatus prtn = SEC_ASN1Decode(coder->mPool, dest, templ, (const char *)src, len);
119 void *dest)
121 return SecAsn1Decode(coder, src->Data, src->Length, templ, dest);
125 * DER encode. The encoded data (in dest.Data) is allocated in this
134 SecAsn1Item *dest)
136 if((coder == NULL) || (src == NULL) || (templ == NULL) || (dest == NULL)) {
139 dest
93 SecAsn1Decode( SecAsn1CoderRef coder, const void *src, size_t len, const SecAsn1Template *templ, void *dest) argument
115 SecAsn1DecodeData( SecAsn1CoderRef coder, const SecAsn1Item *src, const SecAsn1Template *templ, void *dest) argument
130 SecAsn1EncodeItem( SecAsn1CoderRef coder, const void *src, const SecAsn1Template *templ, SecAsn1Item *dest) argument
190 SecAsn1AllocCopy( SecAsn1CoderRef coder, const void *src, size_t len, SecAsn1Item *dest) argument
207 SecAsn1AllocCopyItem( SecAsn1CoderRef coder, const SecAsn1Item *src, SecAsn1Item *dest) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/security_asn1/
H A DSecAsn1Coder.c90 * The dest pointer is a template-specific struct allocated by the caller
98 void *dest)
100 if((coder == NULL) || (src == NULL) || (templ == NULL) || (dest == NULL)) {
103 SECStatus prtn = SEC_ASN1Decode(coder->mPool, dest, templ, (const char *)src, len);
119 void *dest)
121 return SecAsn1Decode(coder, src->Data, src->Length, templ, dest);
125 * DER encode. The encoded data (in dest.Data) is allocated in this
134 SecAsn1Item *dest)
136 if((coder == NULL) || (src == NULL) || (templ == NULL) || (dest == NULL)) {
139 dest
93 SecAsn1Decode( SecAsn1CoderRef coder, const void *src, size_t len, const SecAsn1Template *templ, void *dest) argument
115 SecAsn1DecodeData( SecAsn1CoderRef coder, const SecAsn1Item *src, const SecAsn1Template *templ, void *dest) argument
130 SecAsn1EncodeItem( SecAsn1CoderRef coder, const void *src, const SecAsn1Template *templ, SecAsn1Item *dest) argument
190 SecAsn1AllocCopy( SecAsn1CoderRef coder, const void *src, size_t len, SecAsn1Item *dest) argument
207 SecAsn1AllocCopyItem( SecAsn1CoderRef coder, const SecAsn1Item *src, SecAsn1Item *dest) argument
[all...]
/macosx-10.10/IOAudioFamily-200.6/PCMBlitterLib/
H A DIOAudioBlitterLib.cpp53 UInt32 *dest = (UInt32 *)vdest; local
74 dest[0] = ((i1 & 0x000000FF) << 24)
79 dest[1] = ((i2 & 0x0000FF00) << 16)
84 dest[2] = ((i3 & 0x00FF0000) << 8)
90 dest[0] = ((i2 & 0x00FF0000) << 8)
95 dest[1] = ((i3 & 0x0000FF00) << 16)
100 dest[2] = ((i4 & 0x000000FF) << 24)
106 dest += 3;
108 UInt8 *p = (UInt8 *)dest;
129 void NativeInt24ToFloat32_Portable( const UInt8 *vsrc, Float32 *dest, unsigne argument
180 SwapInt24ToFloat32_Portable( const UInt8 *vsrc, Float32 *dest, unsigned int count ) argument
[all...]
/macosx-10.10/cups-408/cups/scheduler/
H A Dtestlpd.c34 static int print_job(int outfd, int infd, char *dest, char **args) __attribute__((nonnull(4)));
35 static int print_waiting(int outfd, int infd, char *dest);
36 static int remove_job(int outfd, int infd, char *dest, char **args) __attribute__((nonnull(4)));
37 static int status_long(int outfd, int infd, char *dest, char **args) __attribute__((nonnull(4)));
38 static int status_short(int outfd, int infd, char *dest, char **args) __attribute__((nonnull(4)));
54 *dest; /* Destination */ local
69 dest = NULL;
92 else if (!dest)
93 dest = argv[i];
101 (!strcmp(op, "print-job") && (!dest || !oparg
230 print_job(int outfd, int infd, char *dest, char **args) argument
383 print_waiting(int outfd, int infd, char *dest) argument
405 remove_job(int outfd, int infd, char *dest, char **args) argument
436 status_long(int outfd, int infd, char *dest, char **args) argument
479 status_short(int outfd, int infd, char *dest, char **args) argument
[all...]
/macosx-10.10/cups-408/cups/berkeley/
H A Dlpq.c44 const char *dest, /* Desired printer */ local
62 dest = NULL;
108 dest = argv[i] + 2;
120 dest = argv[i];
123 if ((instance = strchr(dest, '/')) != NULL)
128 if ((named_dest = cupsGetNamedDest(http, dest, instance)) == NULL)
138 argv[0], dest, instance);
141 argv[0], dest);
195 if (dest == NULL && !all)
210 if ((dest
298 show_jobs(const char *command, http_t *http, const char *dest, const char *user, const int id, const int longstatus) argument
560 show_printer(const char *command, http_t *http, const char *dest) argument
[all...]

Completed in 424 milliseconds

1234567891011>>