Searched refs:scratch (Results 1 - 25 of 122) sorted by relevance

12345

/macosx-10.10/xnu-2782.1.97/osfmk/vm/
H A DWKdm_new.h80 WK_word* scratch,
85 WK_word* scratch,
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dbytestream.cpp17 char* scratch, int32_t scratch_capacity,
24 return scratch;
60 char* scratch,
73 return scratch;
15 GetAppendBuffer(int32_t min_capacity, int32_t , char* scratch, int32_t scratch_capacity, int32_t* result_capacity) argument
58 GetAppendBuffer(int32_t min_capacity, int32_t , char* scratch, int32_t scratch_capacity, int32_t* result_capacity) argument
H A Dappendable.cpp60 UChar *scratch, int32_t scratchCapacity,
67 return scratch;
58 getAppendBuffer(int32_t minCapacity, int32_t , UChar *scratch, int32_t scratchCapacity, int32_t *resultCapacity) argument
/macosx-10.10/OpenSSL098-52/src/fips/
H A Dfips_canister.c83 void *scratch; local
88 : "=r"(ret),"=r"(scratch) );
93 void *scratch; local
98 : "=r"(ret),"=r"(scratch) );
105 void *scratch; local
110 : "=r"(ret),"=r"(scratch) );
121 void *scratch; local
125 mov scratch,eax local
127 ret = (void *)((size_t)scratch&~3UL);
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGOSRExitCompiler32_64.cpp148 GPRReg scratch = AssemblyHelpers::selectScratchGPR(exit.m_jsValueSource.base()); local
151 m_jit.pushToSave(scratch);
153 m_jit.push(scratch);
156 m_jit.load32(exit.m_jsValueSource.asAddress(OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.tag)), scratch);
157 m_jit.store32(scratch, &bitwise_cast<EncodedValueDescriptor*>(bucket)->asBits.tag);
158 m_jit.load32(exit.m_jsValueSource.asAddress(OBJECT_OFFSETOF(EncodedValueDescriptor, asBits.payload)), scratch);
159 m_jit.store32(scratch, &bitwise_cast<EncodedValueDescriptor*>(bucket)->asBits.payload);
162 m_jit.popToRestore(scratch);
164 m_jit.pop(scratch);
179 // 4) Save all state from GPRs into the scratch buffe
182 EncodedJSValue* scratch = scratchBuffer ? static_cast<EncodedJSValue*>(scratchBuffer->dataBuffer()) : 0; local
[all...]
H A DDFGOSRExitCompiler64.cpp154 // needs conversion into a scratch buffer so that in step 6, where we actually do the
156 // definitely in a well-known spot in the scratch buffer regardless of whether it had
167 // the code below always dumps everything into a scratch buffer first, the two
172 // where we always emit code to dump all state into a scratch buffer only to then
188 // 4) Save all state from GPRs into the scratch buffer.
191 EncodedJSValue* scratch = scratchBuffer ? static_cast<EncodedJSValue*>(scratchBuffer->dataBuffer()) : 0; local
202 m_jit.store64(recovery.gpr(), scratch + index);
212 // 5) Save all state from FPRs into the scratch buffer.
219 m_jit.move(AssemblyHelpers::TrustedImmPtr(scratch + index), GPRInfo::regT0);
230 // 6) Save all state from the stack into the scratch buffe
[all...]
H A DDFGOSREntry.cpp205 // 3) Set up the data in the scratch buffer and perform data format conversions.
211 Register* scratch = bitwise_cast<Register*>(vm->scratchBufferForSize(sizeof(Register) * (2 + JSStack::CallFrameHeaderSize + maxFrameSize))->dataBuffer()); local
213 *bitwise_cast<size_t*>(scratch + 0) = frameSize;
219 *bitwise_cast<void**>(scratch + 1) = targetPC;
221 Register* pivot = scratch + 2 + JSStack::CallFrameHeaderSize;
261 dataLogF(" OSR returning data buffer %p.\n", scratch);
262 return scratch;
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dbocsu.cpp100 char scratch[64]; local
105 char *buffer=sink.GetAppendBuffer(1, length*2, scratch, (int32_t)sizeof(scratch), &capacity);
111 buffer=scratch;
112 capacity=(int32_t)sizeof(scratch);
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DJSInterfaceJIT.h61 inline Jump emitLoadDouble(unsigned virtualRegisterIndex, FPRegisterID dst, RegisterID scratch);
136 inline JSInterfaceJIT::Jump JSInterfaceJIT::emitLoadDouble(unsigned virtualRegisterIndex, FPRegisterID dst, RegisterID scratch)
139 loadPtr(tagFor(virtualRegisterIndex), scratch);
140 Jump isDouble = branch32(Below, scratch, TrustedImm32(JSValue::LowestTag));
141 Jump notInt = branch32(NotEqual, scratch, TrustedImm32(JSValue::Int32Tag));
142 loadPtr(payloadFor(virtualRegisterIndex), scratch);
143 convertInt32ToDouble(scratch, dst);
181 inline JSInterfaceJIT::Jump JSInterfaceJIT::emitLoadDouble(unsigned virtualRegisterIndex, FPRegisterID dst, RegisterID scratch)
183 load64(addressFor(virtualRegisterIndex), scratch);
184 Jump notNumber = emitJumpIfNotImmediateNumber(scratch);
[all...]
H A DAssemblyHelpers.h362 // Tell GC mark phase how much of the scratch buffer is active during call.
370 GPRReg scratch = selectScratchGPR(GPRInfo::argumentGPR0, GPRInfo::argumentGPR1, GPRInfo::argumentGPR2); local
375 GPRReg scratch = GPRInfo::regT0; local
379 move(TrustedImmPtr(reinterpret_cast<void*>(function)), scratch);
380 call(scratch);
445 // Here are possible arrangements of source, target, scratch:
446 // - source, target, scratch can all be separate registers.
447 // - source and target can be the same but scratch is separate.
448 // - target and scratch can be the same but source is separate.
449 void boxInt52(GPRReg source, GPRReg target, GPRReg scratch, FPRRe argument
583 emitLoadStructure(RegisterID source, RegisterID dest, RegisterID scratch) argument
595 emitLoadStructure(AssemblyHelpers& jit, RegisterID base, RegisterID dest, RegisterID scratch) argument
612 emitStoreStructureWithTypeInfo(RegisterID structure, RegisterID dest, RegisterID scratch) argument
615 load64(MacroAssembler::Address(structure, Structure::structureIDOffset()), scratch); local
[all...]
H A DSpecializedThunkJIT.h57 void loadDoubleArgument(int argument, FPRegisterID dst, RegisterID scratch) argument
60 m_failures.append(emitLoadDouble(src, dst, scratch));
77 void loadArgumentWithSpecificClass(const ClassInfo* classInfo, int argument, RegisterID dst, RegisterID scratch) argument
80 emitLoadStructure(dst, scratch, dst);
81 appendFailure(branchPtr(NotEqual, Address(scratch, Structure::classInfoOffset()), TrustedImmPtr(classInfo)));
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dstrtest.cpp366 char scratch[20]; local
368 char *dest = sink.GetAppendBuffer(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
373 dest = sink.GetAppendBuffer(10, 50, scratch, 9, &capacity);
378 dest = sink.GetAppendBuffer(5, 50, scratch, (int32_t)sizeof(scratch), &capacity);
379 if(dest != scratch || capacity != (int32_t)sizeof(scratch)) {
380 errln("ByteSink.GetAppendBuffer() did not properly return the scratch buffer");
397 char scratch[1 local
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/
H A DfeeDigitalSignature.c469 pointProjStruct scratch; local
486 borrowPointProj(&scratch, cp->maxDigits);
500 /* scratch := theirPub */
502 gtog(origKey->x, scratch.x);
503 gtog(origKey->y, scratch.y);
504 int_to_giant(1, scratch.z);
517 /* scratch := M 'o' theirPub */
518 ellMulProjSimple(&scratch, messageGiant, cp);
527 printf("p2 = scratch = R:\n");
528 printGiant(scratch
566 giant scratch = NULL; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A DfeeDigitalSignature.c469 pointProjStruct scratch; local
486 borrowPointProj(&scratch, cp->maxDigits);
500 /* scratch := theirPub */
502 gtog(origKey->x, scratch.x);
503 gtog(origKey->y, scratch.y);
504 int_to_giant(1, scratch.z);
517 /* scratch := M 'o' theirPub */
518 ellMulProjSimple(&scratch, messageGiant, cp);
527 printf("p2 = scratch = R:\n");
528 printGiant(scratch
566 giant scratch = NULL; local
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Dappendable.h98 * May return a pointer to the caller-owned scratch buffer which must have
122 * If a non-scratch buffer is returned, the caller may only pass
126 * The default implementation always returns the scratch buffer.
132 * @param scratch default caller-owned buffer
133 * @param scratchCapacity capacity of the scratch buffer
141 UChar *scratch, int32_t scratchCapacity,
203 * May return a pointer to the caller-owned scratch buffer which must have
214 * @param scratch default caller-owned buffer
215 * @param scratchCapacity capacity of the scratch buffer
223 UChar *scratch, int32_
[all...]
H A Dbytestream.h72 * May return a pointer to the caller-owned scratch buffer which must have
94 * If a non-scratch buffer is returned, the caller may only pass
98 * The default implementation always returns the scratch buffer.
104 * @param scratch default caller-owned buffer
105 * @param scratch_capacity capacity of the scratch buffer
113 char* scratch, int32_t scratch_capacity,
180 * @param scratch default caller-owned buffer
181 * @param scratch_capacity capacity of the scratch buffer
189 char* scratch, int32_t scratch_capacity,
/macosx-10.10/WTF-7600.1.24/icu/unicode/
H A Dbytestream.h72 * May return a pointer to the caller-owned scratch buffer which must have
94 * If a non-scratch buffer is returned, the caller may only pass
98 * The default implementation always returns the scratch buffer.
104 * @param scratch default caller-owned buffer
105 * @param scratch_capacity capacity of the scratch buffer
113 char* scratch, int32_t scratch_capacity,
175 * @param scratch default caller-owned buffer
176 * @param scratch_capacity capacity of the scratch buffer
184 char* scratch, int32_t scratch_capacity,
/macosx-10.10/WebCore-7600.1.25/icu/unicode/
H A Dbytestream.h72 * May return a pointer to the caller-owned scratch buffer which must have
94 * If a non-scratch buffer is returned, the caller may only pass
98 * The default implementation always returns the scratch buffer.
104 * @param scratch default caller-owned buffer
105 * @param scratch_capacity capacity of the scratch buffer
113 char* scratch, int32_t scratch_capacity,
175 * @param scratch default caller-owned buffer
176 * @param scratch_capacity capacity of the scratch buffer
184 char* scratch, int32_t scratch_capacity,
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIDSystemCursorHelper.cpp69 IOFixedPoint64 scratch; local
77 screenLocation += scratch.fromIntFloor(screen->minx - desktop->minx,
87 screenLocation -= scratch.fromIntFloor(desktop->minx, desktop->miny);
88 screenLocation *= scratch.fromFixed64(x_scale, y_scale);
89 screenLocation += scratch.fromIntFloor(screen->minx, screen->miny);
/macosx-10.10/libresolv-57/
H A Ddst_support.c358 static u_char scratch[1000]; local
360 n = b64_ntop(data, scratch, size, sizeof(scratch));
361 printf("%s: %x %d %s\n", msg, mode, n, scratch);
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLOSREntry.cpp84 EncodedJSValue* scratch = static_cast<EncodedJSValue*>( local
88 scratch[local] = JSValue::encode(values.local(local));
/macosx-10.10/apache-793/httpd/support/
H A Dhtpasswd.c282 char *scratch, cp[MAX_STRING_LEN]; local
411 scratch = cp;
412 while (apr_isspace(*scratch)) {
413 ++scratch;
416 if (!*scratch || (*scratch == '#')) {
423 colon = strchr(scratch, ':');
439 if (strcmp(user, scratch) != 0) {
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_require.rb413 scratch = th[:scratch]
415 if scratch.empty?
416 scratch << :pre
420 scratch << :post
433 scratch = []
448 Thread.pass until scratch[0]
452 t1[:scratch] = t2[:scratch] = scratch
[all...]
/macosx-10.10/kext_tools-384.1.4/
H A Dkextfind_query.c1054 char * scratch = NULL; // must free local
1059 scratch = strdup(string);
1060 if (!scratch) {
1066 v1string = scratch;
1070 switch (scratch[0]) {
1073 v1string = &scratch[1];
1076 if (scratch[1] != 'e') {
1080 v1string = &scratch[2];
1083 if (scratch[1] == 'e') {
1085 } else if (scratch[
1711 CFMutableStringRef scratch = NULL; // must release local
[all...]
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/IOKit/hidsystem/
H A Dev_private.h126 IOGBounds scratch[2]; member in struct:_evScreen

Completed in 190 milliseconds

12345