Searched refs:pnew (Results 1 – 7 of 7) sorted by relevance
/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/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/mksh/src/ |
D | misc.c | 654 char *pnew; in gmatchx() local 678 pnew = simplify_gmatch_pattern((const unsigned char *)p); in gmatchx() 679 pe = pnew + strlen(pnew); in gmatchx() 682 (const unsigned char *)pnew, (const unsigned char *)pe); in gmatchx() 683 afree(pnew, ATEMP); in gmatchx()
|
/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/Objects/ |
D | stringobject.c | 3715 PyObject *tmp, *pnew; in str_subtype_new() local 3724 pnew = type->tp_alloc(type, n); in str_subtype_new() 3725 if (pnew != NULL) { in str_subtype_new() 3726 Py_MEMCPY(PyString_AS_STRING(pnew), PyString_AS_STRING(tmp), n+1); in str_subtype_new() 3727 ((PyStringObject *)pnew)->ob_shash = in str_subtype_new() 3729 ((PyStringObject *)pnew)->ob_sstate = SSTATE_NOT_INTERNED; in str_subtype_new() 3732 return pnew; in str_subtype_new()
|
D | unicodeobject.c | 8854 PyUnicodeObject *tmp, *pnew; in unicode_subtype_new() local 8862 pnew = (PyUnicodeObject *) type->tp_alloc(type, n = tmp->length); in unicode_subtype_new() 8863 if (pnew == NULL) { in unicode_subtype_new() 8867 pnew->str = (Py_UNICODE*) PyObject_MALLOC(sizeof(Py_UNICODE) * (n+1)); in unicode_subtype_new() 8868 if (pnew->str == NULL) { in unicode_subtype_new() 8869 _Py_ForgetReference((PyObject *)pnew); in unicode_subtype_new() 8870 PyObject_Del(pnew); in unicode_subtype_new() 8874 Py_UNICODE_COPY(pnew->str, tmp->str, n+1); in unicode_subtype_new() 8875 pnew->length = n; in unicode_subtype_new() 8876 pnew->hash = tmp->hash; in unicode_subtype_new() [all …]
|
/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()
|