Searched refs:sp (Results 26 - 50 of 1225) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dformat-strings-0x.cpp8 void f(char **sp, float *fp) { argument
9 scanf("%as", sp); // expected-warning{{format specifies type 'float *' but the argument has type 'char **'}}
14 printf(*sp); // expected-warning {{not a string literal}}
29 printf("void: %d", f(sp, fp)); // expected-error {{cannot pass expression of type 'void' to variadic function; expected type from format string was 'int'}}
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_surface.h39 sp_init_surface_functions(struct softpipe_context *sp);
H A Dsp_query.h36 softpipe_check_render_cond(struct softpipe_context *sp);
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_setcancelstate.c85 ptw32_thread_t * sp = (ptw32_thread_t *) self.p; local
87 if (sp == NULL
96 ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock);
100 *oldstate = sp->cancelState;
103 sp->cancelState = state;
109 && sp->cancelType == PTHREAD_CANCEL_ASYNCHRONOUS
110 && WaitForSingleObject (sp->cancelEvent, 0) == WAIT_OBJECT_0)
112 sp->state = PThreadStateCanceling;
113 sp->cancelState = PTHREAD_CANCEL_DISABLE;
114 ResetEvent (sp
[all...]
H A Dpthread_setcanceltype.c85 ptw32_thread_t * sp = (ptw32_thread_t *) self.p; local
87 if (sp == NULL
97 ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock);
101 *oldtype = sp->cancelType;
104 sp->cancelType = type;
109 if (sp->cancelState == PTHREAD_CANCEL_ENABLE
111 && WaitForSingleObject (sp->cancelEvent, 0) == WAIT_OBJECT_0)
113 sp->state = PThreadStateCanceling;
114 sp->cancelState = PTHREAD_CANCEL_DISABLE;
115 ResetEvent (sp
[all...]
H A Dw32_CancelableWait.c59 ptw32_thread_t * sp; local
67 sp = (ptw32_thread_t *) self.p;
69 if (sp != NULL)
74 if (sp->cancelState == PTHREAD_CANCEL_ENABLE)
77 if ((handles[1] = sp->cancelEvent) != NULL)
111 if (sp != NULL)
118 ptw32_mcs_lock_acquire (&sp->stateLock, &stateLock);
119 if (sp->state < PThreadStateCanceling)
121 sp->state = PThreadStateCanceling;
122 sp
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dstrtest.cpp207 StringPiece sp(abcd, -1);
208 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) {
211 sp=StringPiece(abcd, 5);
212 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {
215 sp
[all...]
/external/compiler-rt/lib/builtins/arm/
H A Dsync_synchronize.S26 stmfd sp!, {r7, lr}
27 add r7, sp, #0
29 ldmfd sp!, {r7, pc}
/external/tcpdump/
H A Dprint-telnet.c108 /* sp points to IAC byte */
110 telnet_parse(const u_char *sp, u_int length, int print) argument
115 #define FETCH(c, sp, length) \
119 TCHECK(*sp); \
120 c = *sp++; \
124 osp = sp;
126 FETCH(c, sp, length);
129 FETCH(c, sp, length);
147 FETCH(x, sp, length);
158 p = sp;
228 telnet_print(const u_char *sp, u_int length) argument
[all...]
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyscall-arm64-linux.S81 stp x29, x30, [sp, #-16]!
82 stp x27, x28, [sp, #-16]!
83 stp x25, x26, [sp, #-16]!
84 stp x23, x24, [sp, #-16]!
85 stp x21, x22, [sp, #-16]!
86 stp x19, x20, [sp, #-16]!
87 stp x4, x5, [sp, #-16]!
88 stp x2, x3, [sp, #-16]!
89 stp x0, x1, [sp, #-16]!
101 ldr x5, [sp, #
[all...]
/external/valgrind/main/none/tests/x86/
H A Dpushpopseg.stdout.exp0 sp change after push = -2
2 sp change after pop = 2
4 sp change after push = -4
5 sp change after pop = 4
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_query.h36 softpipe_check_render_cond(struct softpipe_context *sp);
/external/qemu/distrib/sdl-1.2.15/src/timer/mint/
H A DSDL_vbltimer.S44 lea sp@(-216),sp; \
45 fsave sp@; \
46 fmovel fpiar,sp@-; \
47 lea sp@(-64),sp; \
48 fmovemd fp0-fp7,sp@
51 fmovemd sp@,fp0-fp7; \
52 lea sp@(64),sp; \
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_powerpc-inl.h96 void **sp; variable
103 __asm__ volatile ("mr %0,r1" : "=r" (sp));
105 __asm__ volatile ("mr %0,1" : "=r" (sp));
128 while (sp && n < max_depth) {
134 void **next_sp = NextStackFrame<!IS_STACK_FRAMES>(sp);
141 // linux ppc64), it's in sp[2]. For SYSV (used by linux ppc),
142 // it's in sp[1].
144 result[n] = *(sp+2);
146 result[n] = *(sp+1);
149 result[n] = *(sp
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_powerpc-inl.h96 void **sp; variable
103 __asm__ volatile ("mr %0,r1" : "=r" (sp));
105 __asm__ volatile ("mr %0,1" : "=r" (sp));
128 while (sp && n < max_depth) {
134 void **next_sp = NextStackFrame<!IS_STACK_FRAMES>(sp);
141 // linux ppc64), it's in sp[2]. For SYSV (used by linux ppc),
142 // it's in sp[1].
144 result[n] = *(sp+2);
146 result[n] = *(sp+1);
149 result[n] = *(sp
[all...]
/external/clang/test/Sema/
H A Dformat-strings-c90.c7 void foo(char **sp, float *fp, int *ip) { argument
8 scanf("%as", sp); /* expected-warning{{'a' length modifier is not supported by ISO C}} */
9 scanf("%a[abc]", sp); /* expected-warning{{'a' length modifier is not supported by ISO C}} */
/external/elfutils/0.153/libebl/
H A Debl_syscall_abi.c58 ebl_syscall_abi (ebl, sp, pc, callno, args)
60 int *sp;
65 return ebl != NULL ? ebl->syscall_abi (ebl, sp, pc, callno, args) : -1;
/external/llvm/test/MC/Mips/
H A Ddo_switch1.s19 .frame $sp,8,$ra
26 addiu $sp, $sp, -8
28 sw $1, 4($sp)
29 lw $2, 4($sp)
36 addiu $sp, $sp, 8
47 addiu $sp, $sp, 8
51 addiu $sp,
[all...]
H A Ddo_switch2.s18 .frame $sp,8,$ra
27 addiu $sp, $sp, -8
29 sw $1, 4($sp)
30 lw $3, 4($sp)
37 addiu $sp, $sp, 8
49 addiu $sp, $sp, 8
53 addiu $sp,
[all...]
H A Ddo_switch3.s18 .frame $sp,16,$ra
25 daddiu $sp, $sp, -16
29 sw $1, 12($sp)
30 lw $1, 12($sp)
38 daddiu $sp, $sp, 16
54 daddiu $sp, $sp, 16
58 daddiu $sp,
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dstrtest.cpp239 StringPiece sp(abcd, -1);
240 if(sp.empty() || sp.data()!=abcdefg_chars || sp.length()!=4 || sp.size()!=4) {
243 sp=StringPiece(abcd, 5);
244 if(!sp.empty() || sp.length()!=0 || sp.size()!=0) {
247 sp
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dclientattrib.c74 __GLXattribute **spp = gc->attributes.stackPointer, *sp; local
77 if (!(sp = *spp)) {
78 sp = (__GLXattribute *) Xmalloc(sizeof(__GLXattribute));
79 *spp = sp;
81 sp->mask = mask;
84 sp->storePack = state->storePack;
85 sp->storeUnpack = state->storeUnpack;
102 __GLXattribute **spp = gc->attributes.stackPointer, *sp; local
107 sp = *spp;
108 assert(sp !
132 __GLXattribute *sp, **spp; local
[all...]
/external/mesa3d/src/glx/
H A Dclientattrib.c74 __GLXattribute **spp = gc->attributes.stackPointer, *sp; local
77 if (!(sp = *spp)) {
78 sp = (__GLXattribute *) Xmalloc(sizeof(__GLXattribute));
79 *spp = sp;
81 sp->mask = mask;
84 sp->storePack = state->storePack;
85 sp->storeUnpack = state->storeUnpack;
102 __GLXattribute **spp = gc->attributes.stackPointer, *sp; local
107 sp = *spp;
108 assert(sp !
132 __GLXattribute *sp, **spp; local
[all...]
/external/llvm/test/MC/ARM/
H A Deh-directive-pad.s28 sub sp, sp, #0
29 add sp, sp, #0
57 sub sp, sp, #0x4
58 add sp, sp, #0x4
70 sub sp, sp, #
[all...]
H A Dvfp-aliases-diagnostics.s9 fstmfdd sp!, {s0}
10 fstmead sp!, {s0}
11 fstmdbd sp!, {s0}
12 fstmiad sp!, {s0}
13 fstmfds sp!, {d0}
14 fstmeas sp!, {d0}
15 fstmdbs sp!, {d0}
16 fstmias sp!, {d0}
18 fldmias sp!, {d0}
19 fldmdbs sp!, {d
[all...]

Completed in 899 milliseconds

1234567891011>>