/external/llvm/test/Transforms/InstCombine/ |
D | statepoint.ll | 11 …%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7… 12 %cmp = icmp eq i32 addrspace(1)* %pnew, null 15 ; CHECK: %pnew = call i32 addrspace(1)* 22 …%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7… 23 %cmp = icmp eq i32 addrspace(1)* %pnew, null 32 …%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7… 33 %cmp = icmp eq i32 addrspace(1)* %pnew, null 36 ; CHECK-NOT: %pnew 43 …%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7… 44 %cmp = icmp eq i32 addrspace(1)* %pnew, null [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | statepoint.ll | 11 …%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7… 12 %cmp = icmp eq i32 addrspace(1)* %pnew, null 15 ; CHECK: %pnew = call i32 addrspace(1)* 22 …%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7… 23 %cmp = icmp eq i32 addrspace(1)* %pnew, null 32 …%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7… 33 %cmp = icmp eq i32 addrspace(1)* %pnew, null 36 ; CHECK-NOT: %pnew 43 …%pnew = call i32 addrspace(1)* @llvm.experimental.gc.relocate.p1i32(token %safepoint_token, i32 7… 44 %cmp = icmp eq i32 addrspace(1)* %pnew, null [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | statepoint-forward.ll | 29 …%pnew = call i32 addrspace(1)* addrspace(1)* @llvm.experimental.gc.relocate.p1p1i32(token %safepoi… 30 %after = load i32 addrspace(1)*, i32 addrspace(1)* addrspace(1)* %pnew 48 …%pnew = call i32 addrspace(1)* addrspace(1)* @llvm.experimental.gc.relocate.p1p1i32(token %safepoi… 49 %after = load i32 addrspace(1)*, i32 addrspace(1)* addrspace(1)* %pnew
|
/external/llvm/test/CodeGen/X86/ |
D | statepoint-forward.ll | 29 …%pnew = call i32 addrspace(1)* addrspace(1)* @llvm.experimental.gc.relocate.p1p1i32(token %safepoi… 30 %after = load i32 addrspace(1)*, i32 addrspace(1)* addrspace(1)* %pnew 48 …%pnew = call i32 addrspace(1)* addrspace(1)* @llvm.experimental.gc.relocate.p1p1i32(token %safepoi… 49 %after = load i32 addrspace(1)*, i32 addrspace(1)* addrspace(1)* %pnew
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | fast-isel-cmpxchg.ll | 44 define i32 @cmpxchg_acq_rel_32_load(i32* %p, i32 %cmp, i32* %pnew, i32* %ps) #0 { 45 %new = load i32, i32* %pnew
|
D | arm64-atomic.ll | 21 define i32 @val_compare_and_swap_from_load(i32* %p, i32 %cmp, i32* %pnew) #0 { 36 %new = load i32, i32* %pnew
|
/external/mksh/src/ |
D | misc.c | 631 char *pnew; in gmatchx() local 655 pnew = simplify_gmatch_pattern((const unsigned char *)p); in gmatchx() 656 pe = strnul(pnew); in gmatchx() 659 (const unsigned char *)pnew, (const unsigned char *)pe, in gmatchx() 661 afree(pnew, ATEMP); in gmatchx()
|
/external/python/cpython3/Objects/ |
D | bytesobject.c | 2836 PyObject *tmp, *pnew; in bytes_subtype_new() local 2845 pnew = type->tp_alloc(type, n); in bytes_subtype_new() 2846 if (pnew != NULL) { in bytes_subtype_new() 2847 memcpy(PyBytes_AS_STRING(pnew), in bytes_subtype_new() 2849 ((PyBytesObject *)pnew)->ob_shash = in bytes_subtype_new() 2853 return pnew; in bytes_subtype_new()
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 2804 PyObject *tmp, *pnew; in bytes_subtype_new() local 2813 pnew = type->tp_alloc(type, n); in bytes_subtype_new() 2814 if (pnew != NULL) { in bytes_subtype_new() 2815 memcpy(PyBytes_AS_STRING(pnew), in bytes_subtype_new() 2817 ((PyBytesObject *)pnew)->ob_shash = in bytes_subtype_new() 2821 return pnew; in bytes_subtype_new()
|
D | stringobject.c | 3712 PyObject *tmp, *pnew; in str_subtype_new() local 3721 pnew = type->tp_alloc(type, n); in str_subtype_new() 3722 if (pnew != NULL) { in str_subtype_new() 3723 Py_MEMCPY(PyString_AS_STRING(pnew), PyString_AS_STRING(tmp), n+1); in str_subtype_new() 3724 ((PyStringObject *)pnew)->ob_shash = in str_subtype_new() 3726 ((PyStringObject *)pnew)->ob_sstate = SSTATE_NOT_INTERNED; in str_subtype_new() 3729 return pnew; in str_subtype_new()
|
D | unicodeobject.c | 8850 PyUnicodeObject *tmp, *pnew; in unicode_subtype_new() local 8858 pnew = (PyUnicodeObject *) type->tp_alloc(type, n = tmp->length); in unicode_subtype_new() 8859 if (pnew == NULL) { in unicode_subtype_new() 8863 pnew->str = (Py_UNICODE*) PyObject_MALLOC(sizeof(Py_UNICODE) * (n+1)); in unicode_subtype_new() 8864 if (pnew->str == NULL) { in unicode_subtype_new() 8865 _Py_ForgetReference((PyObject *)pnew); in unicode_subtype_new() 8866 PyObject_Del(pnew); in unicode_subtype_new() 8870 Py_UNICODE_COPY(pnew->str, tmp->str, n+1); in unicode_subtype_new() 8871 pnew->length = n; in unicode_subtype_new() 8872 pnew->hash = tmp->hash; in unicode_subtype_new() [all …]
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-atomic.ll | 21 define i32 @val_compare_and_swap_from_load(i32* %p, i32 %cmp, i32* %pnew) #0 { 34 %new = load i32, i32* %pnew
|
/external/python/cpython2/Modules/ |
D | datetimemodule.c | 1175 char *pnew; /* pointer to available byte in output format */ in wrap_strftime() local 1222 pnew = PyString_AsString(newfmt); in wrap_strftime() 1335 pnew = PyString_AsString(newfmt) + usednew; in wrap_strftime() 1337 memcpy(pnew, ptoappend, ntoappend); in wrap_strftime() 1338 pnew += ntoappend; in wrap_strftime()
|
/external/python/cpython3/Modules/ |
D | _datetimemodule.c | 1481 char *pnew; /* pointer to available byte in output format */ in wrap_strftime() local 1508 pnew = PyBytes_AsString(newfmt); in wrap_strftime() 1601 pnew = PyBytes_AsString(newfmt) + usednew; in wrap_strftime() 1603 memcpy(pnew, ptoappend, ntoappend); in wrap_strftime() 1604 pnew += ntoappend; in wrap_strftime()
|