Searched refs:destination (Results 1 - 25 of 224) sorted by relevance

123456789

/macosx-10.10.1/Librpcsvc-24/xcodescripts/
H A Dinstall_rpcsvc.sh4 destination="$DSTROOT$INSTALL_PATH_PREFIX"/usr/include/rpcsvc
7 printf " install -m 0755 -d %s\n" "$destination"
8 install -m 0755 -d "$destination"
18 printf " install -m 0444 %s %s\n" "$OBJROOT"/"$hfile" "$destination"
19 install -m 0444 "$OBJROOT"/"$hfile" "$destination"
21 printf " install -m 0444 %s %s\n" "$xfile" "$destination"
22 install -m 0444 "$xfile" "$destination"
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DHexNumber.h44 inline void appendByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase) argument
47 destination.append(hexDigits[byte >> 4]);
48 destination.append(hexDigits[byte & 0xF]);
52 inline void placeByteAsHexCompressIfPossible(unsigned char byte, T& destination, unsigned& index, HexConversionMode mode = Uppercase) argument
56 destination[index++] = hexDigits[byte >> 4];
57 destination[index++] = hexDigits[byte & 0xF];
61 inline void placeByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase) argument
64 *destination++ = hexDigits[byte >> 4];
65 *destination++ = hexDigits[byte & 0xF];
69 inline void appendUnsignedAsHex(unsigned number, T& destination, HexConversionMod argument
83 appendUnsigned64AsHex(uint64_t number, T& destination, HexConversionMode mode = Uppercase) argument
98 appendUnsignedAsHexFixedSize(unsigned number, T& destination, unsigned desiredDigits, HexConversionMode mode = Uppercase) argument
[all...]
/macosx-10.10.1/CPANInternal-159.1/Perl-Tidy-20121207/examples/
H A Dbbtidy.pl16 destination => \$output_string
H A Dex_mp.pl10 destination=>\$dest_string,stderr=>\$stderr_string,
28 destination => \$dest_string,
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGJumpReplacement.h37 JumpReplacement(CodeLocationLabel source, CodeLocationLabel destination) argument
39 , m_destination(destination)
/macosx-10.10.1/WebKit2-7600.1.25/Platform/cg/
H A DCGUtilities.h31 void paintImage(CGContextRef, CGImageRef, CGFloat scaleFactor, CGPoint destination, CGRect source);
32 void paintBitmapContext(CGContextRef, CGContextRef bitmapContext, CGFloat scaleFactor, CGPoint destination, CGRect source);
H A DCGUtilities.cpp33 void paintImage(CGContextRef context, CGImageRef image, CGFloat scaleFactor, CGPoint destination, CGRect source) argument
37 CGContextClipToRect(context, CGRectMake(destination.x, destination.y, source.size.width, source.size.height));
43 CGFloat destX = destination.x - source.origin.x;
44 CGFloat destY = -imageHeight - destination.y + source.origin.y;
51 void paintBitmapContext(CGContextRef context, CGContextRef bitmapContext, CGFloat scaleFactor, CGPoint destination, CGRect source) argument
54 paintImage(context, image.get(), scaleFactor, destination, source);
/macosx-10.10.1/WebInspectorUI-7600.1.17/Scripts/
H A Dupdate-pretty-printer.rb6 puts "usage: #{File.basename $0} <destination-to-update>"
8 puts "<destination-to-update> values:"
19 destination = ARGV[0]
20 if destination != "Tools" && destination != "UserInterface"
44 map = destination == "Tools" ? USER_INTERFACE_TO_TOOLS_MAP : TOOLS_TO_USER_INTERFACE_MAP
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dlog.c119 isc_logdestination_t destination; local
127 destination.file.stream = NULL;
128 destination.file.name = "named.run";
129 destination.file.versions = ISC_LOG_ROLLNEVER;
130 destination.file.maximum_size = 0;
134 &destination,
142 destination.facility = ISC_FACILITY;
145 &destination, 0);
165 isc_logdestination_t destination; local
186 destination
[all...]
/macosx-10.10.1/bind9-45.101/bind9/bin/tools/
H A Dnamed-journalprint.c39 isc_logdestination_t destination; local
48 destination.file.stream = errout;
49 destination.file.name = NULL;
50 destination.file.versions = ISC_LOG_ROLLNEVER;
51 destination.file.maximum_size = 0;
55 &destination, 0) == ISC_R_SUCCESS);
/macosx-10.10.1/WTF-7600.1.24/wtf/text/
H A DASCIIFastPath.h110 inline void copyLCharsFromUCharSource(LChar* destination, const UChar* source, size_t length) argument
119 destination[i] = static_cast<LChar>(source[i]);
134 _mm_storeu_si128(reinterpret_cast<__m128i*>(&destination[i]), packedChars);
140 destination[i] = static_cast<LChar>(source[i]);
143 const LChar* const end = destination + length;
150 const uintptr_t lengthLeft = end - destination;
151 const LChar* const simdEnd = destination + (lengthLeft & ~memoryAccessMask);
155 : [SOURCE]"+r" (source), [DESTINATION]"+r" (destination)
158 } while (destination != simdEnd);
161 while (destination !
[all...]
/macosx-10.10.1/gnutar-453/gnutar/src/
H A Dmisc.c66 char *destination = 0;
84 destination = buffer + length;
86 *destination++ = '\\';
87 *destination++ = character == '\\' ? '\\' : 'n';
92 *destination++ = character;
98 *destination = '\0';
119 char *destination = string;
131 *destination++ = '\\';
136 *destination++ = '\a';
141 *destination
65 char *destination = 0; local
118 char *destination = string; local
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/assembler/
H A DRepatchBuffer.h68 void relink(CodeLocationJump jump, CodeLocationLabel destination) argument
70 MacroAssembler::repatchJump(jump, destination);
73 void relink(CodeLocationCall call, CodeLocationLabel destination) argument
75 MacroAssembler::repatchCall(call, destination);
78 void relink(CodeLocationCall call, FunctionPtr destination) argument
80 MacroAssembler::repatchCall(call, destination);
83 void relink(CodeLocationNearCall nearCall, CodePtr destination) argument
85 MacroAssembler::repatchNearCall(nearCall, CodeLocationLabel(destination));
88 void relink(CodeLocationNearCall nearCall, CodeLocationLabel destination) argument
90 MacroAssembler::repatchNearCall(nearCall, destination);
166 replaceWithJump(CodeLocationLabel instructionStart, CodeLocationLabel destination) argument
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/tests/
H A Disctest.c69 isc_logdestination_t destination; local
76 destination.file.stream = logfile;
77 destination.file.name = NULL;
78 destination.file.versions = ISC_LOG_ROLLNEVER;
79 destination.file.maximum_size = 0;
83 &destination, 0));
/macosx-10.10.1/tcl-105/tcl_ext/memchan/memchan/tools/
H A Dhtdocs_get_sf_stats20 foreach {urlvar destination} {
24 puts "Retrieving [set $urlvar] --> $destination"
25 exec /usr/bin/wget -q -O $destination [set $urlvar] >/dev/null
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/tools/
H A Dhtdocs_get_sf_stats20 foreach {urlvar destination} {
24 puts "Retrieving [set $urlvar] --> $destination"
25 exec /usr/bin/wget -q -O $destination [set $urlvar] >/dev/null
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Denviron.c86 char *destination; local
106 destination = (envp != 0 && strlen(*envp) >= l_nameval) ?
108 if (destination == 0)
110 strncpy(destination, name, l_name);
111 destination[l_name] = '=';
112 strcpy(destination + l_name + 1, value);
113 return ((envp == 0) ? addenv(destination) : (*envp = destination, 0));
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/
H A DbuildExample24 echo Creating destination directory...
30 echo Cleaning destination directories...
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/
H A DJSStringRef.cpp100 char* destination = buffer; local
104 result = convertLatin1ToUTF8(&source, source + string->length(), &destination, destination + bufferSize - 1);
107 result = convertUTF16ToUTF8(&source, source + string->length(), &destination, destination + bufferSize - 1, true);
110 *destination++ = '\0';
114 return destination - buffer;
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_package_old.rb14 @destination = File.join @tempdir, 'extract'
16 FileUtils.mkdir_p @destination
32 @package.extract_files @destination
34 extracted = File.join @destination, 'lib/foo.rb'
46 @package.extract_files @destination
H A Dtest_gem_ext_builder.rb25 ENV['DESTDIR'] = 'destination'
54 assert_match %r%^all: destination$%, results
55 assert_match %r%^install: destination$%, results
/macosx-10.10.1/WebKit2-7600.1.25/Shared/Downloads/
H A DDownload.cpp93 String destination; local
95 if (!sendSync(Messages::DownloadProxy::DecideDestinationWithSuggestedFilename(filename), Messages::DownloadProxy::DecideDestinationWithSuggestedFilename::Reply(destination, allowOverwrite, sandboxExtensionHandle)))
102 return destination;
107 String destination = retrieveDestinationWithSuggestedFilename(filename, allowOverwrite); local
109 didDecideDestination(destination, allowOverwrite);
111 return destination;
/macosx-10.10.1/bind9-45.101/bind9/bin/tests/
H A Dcfg_test.c68 isc_logdestination_t destination; local
85 destination.file.stream = stderr;
86 destination.file.name = NULL;
87 destination.file.versions = ISC_LOG_ROLLNEVER;
88 destination.file.maximum_size = 0;
92 &destination, ISC_LOG_PRINTTIME);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_transform/lib/
H A DSource.h20 Source(CFStringRef sourceObjectName, Transform* destination, CFStringRef destinationName);
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/package/
H A Dold.rb64 destination = install_location full_name, destination_dir
78 FileUtils.rm_rf destination
80 FileUtils.mkdir_p File.dirname destination
82 open destination, 'wb', entry['mode'] do |out|
86 say destination if Gem.configuration.really_verbose

Completed in 194 milliseconds

123456789